Categories

Image EXIF Editor

Edit and modify EXIF metadata in images including rotation, author, camera, and other common metadata fields using ExifTool

Click to upload file or drag and drop file here

Maximum file size: 20MB Supported formats: image/jpeg, image/tiff

Upload JPEG or TIFF image file (formats that support EXIF metadata)

Choose the EXIF operation to perform

Set the artist or author name in EXIF metadata

Set copyright information in EXIF metadata

Set image description or comment in EXIF metadata

Set the date and time the image was taken (format: YYYY-MM-DD HH:MM:SS)

Set camera manufacturer information

Set camera model information

Set software used to process the image

Set image orientation (will rotate the image accordingly)

Preserve original EXIF data while adding new information

API Documentation

Request Endpoint

POST /en/api/tools/image-exif-editor

Request Parameters

Parameter Name Type Required Description
imageFile file (Upload required) Yes Upload JPEG or TIFF image file (formats that support EXIF metadata)
operation select No Choose the EXIF operation to perform
artist text No Set the artist or author name in EXIF metadata
copyright text No Set copyright information in EXIF metadata
comment textarea No Set image description or comment in EXIF metadata
dateTime text No Set the date and time the image was taken (format: YYYY-MM-DD HH:MM:SS)
make text No Set camera manufacturer information
model text No Set camera model information
software text No Set software used to process the image
orientation select No Set image orientation (will rotate the image accordingly)
keepOriginal checkbox No Preserve original EXIF data while adding new information

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

Response Format

{
  "filePath": "/public/processing/randomid.ext",
  "fileName": "output.ext",
  "contentType": "application/octet-stream",
  "size": 1024,
  "metadata": {
    "key": "value"
  },
  "error": "Error message (optional)",
  "message": "Notification message (optional)"
}
File: File

AI MCP Documentation

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-image-exif-editor": {
      "name": "image-exif-editor",
      "description": "Edit and modify EXIF metadata in images including rotation, author, camera, and other common metadata fields using ExifTool",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=image-exif-editor",
      "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]