Batch Image Info Viewer

View basic information for multiple images at once - dimensions, format, file size, and metadata presence

Click to upload files or drag and drop files here

Maximum file size: 50MB Maximum files: 100
Supported formats: image/jpeg, image/jpg, image/png, image/webp, image/gif, image/bmp, image/tiff, image/avif

Select up to 100 image files to view their information

Show whether images contain EXIF, IPTC, or XMP metadata

Key Facts

Category
Images, Audio & Video
Input Types
file, checkbox
Output Type
json
Sample Coverage
4
API Ready
Yes

Overview

The Batch Image Info Viewer allows you to quickly inspect and compare key properties of up to 100 images simultaneously, including dimensions, file size, format, and the presence of EXIF, IPTC, or XMP metadata.

When to Use

  • When you need to verify the dimensions and file formats of a large batch of images before uploading them to a website or CMS.
  • When checking if your exported photos contain embedded metadata like EXIF, IPTC, or XMP tags.
  • When auditing a folder of mixed image assets to identify oversized files or unsupported formats.

How It Works

  • Upload up to 100 image files in supported formats such as JPEG, PNG, WEBP, GIF, BMP, TIFF, or AVIF.
  • Toggle the option to check for the presence of EXIF, IPTC, or XMP metadata indicators.
  • View the structured JSON output containing dimensions, file sizes, formats, and metadata flags for all uploaded files.

Use Cases

Web developers verifying that all assets in a folder are optimized in WEBP or AVIF format and match target dimensions.
Photographers checking if their exported JPEGs successfully retain EXIF metadata before sharing them.
Content managers auditing user-submitted graphics to filter out unsupported BMP or TIFF files.

Examples

1. Web Asset Optimization Audit

Front-end Developer
Background
A developer is preparing to launch a new landing page and needs to ensure all 25 background and product images are in WEBP format and under 500KB.
Problem
Manually checking the properties of 25 individual files in the OS file explorer is slow and prone to oversight.
How to Use
Upload all 25 images to the Batch Image Info Viewer and keep the metadata indicator option enabled.
Example Config
includeDetailedMetadata: true
Outcome
The tool outputs a JSON list showing that two images are still in PNG format and three exceed the target dimensions, allowing for quick correction.

2. Privacy Check for Social Media Uploads

Social Media Manager
Background
A manager wants to post a batch of behind-the-scenes photos but needs to ensure no sensitive location or camera EXIF data is embedded.
Problem
Verifying the presence of EXIF metadata on 15 photos individually takes too much time.
How to Use
Select the 15 JPEG files, check the 'Include Metadata Indicators' option, and run the viewer.
Example Config
includeDetailedMetadata: true
Outcome
The JSON output flags five photos containing EXIF data, prompting the manager to strip the metadata before publishing.

Try with Samples

image, png, jpg

Related Hubs

FAQ

What image formats are supported by the viewer?

The tool supports JPEG, JPG, PNG, WEBP, GIF, BMP, TIFF, and AVIF formats.

How many images can I upload at one time?

You can upload and inspect up to 100 images in a single batch.

Does this tool upload my images to a remote server?

No, the image analysis is performed locally in your browser, ensuring your files remain private.

What metadata indicators does the tool check for?

It detects the presence of EXIF, IPTC, and XMP metadata blocks within the image files.

Is there a file size limit for the uploaded images?

Yes, the maximum limit for the batch upload is 50 MB.

API Documentation

Request Endpoint

POST /en/api/tools/image-batch-info

Request Parameters

Parameter Name Type Required Description
imageFiles file (Upload required) Yes Select up to 100 image files to view their information
includeDetailedMetadata checkbox No Show whether images contain EXIF, IPTC, or XMP metadata

File type parameters need to be uploaded first via POST /upload/image-batch-info to get filePath, then pass filePath to the corresponding file field.

Response Format

{
  "key": {...},
  "metadata": {
    "key": "value"
  },
  "error": "Error message (optional)",
  "message": "Notification message (optional)"
}
JSON Data: JSON Data

AI MCP Documentation

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-image-batch-info": {
      "name": "image-batch-info",
      "description": "View basic information for multiple images at once - dimensions, format, file size, and metadata presence",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=image-batch-info",
      "command": "",
      "args": [],
      "env": {},
      "isActive": true,
      "type": "sse"
    }
  }
}

You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

Supports URL file links or Base64 encoding for file parameters.

If you encounter any issues, please contact us at [email protected]