Image EXIF Editor
Edit and modify EXIF metadata in images including rotation, author, camera, and other common metadata fields using ExifTool
Documentation de l'API
Point de terminaison de la requête
Paramètres de la requête
| Nom du paramètre | Type | Requis | Description |
|---|---|---|---|
| imageFile | file (Téléchargement requis) | Oui | Upload JPEG or TIFF image file (formats that support EXIF metadata) |
| operation | select | Non | Choose the EXIF operation to perform |
| artist | text | Non | Set the artist or author name in EXIF metadata |
| copyright | text | Non | Set copyright information in EXIF metadata |
| comment | textarea | Non | Set image description or comment in EXIF metadata |
| dateTime | text | Non | Set the date and time the image was taken (format: YYYY-MM-DD HH:MM:SS) |
| make | text | Non | Set camera manufacturer information |
| model | text | Non | Set camera model information |
| software | text | Non | Set software used to process the image |
| orientation | select | Non | Set image orientation (will rotate the image accordingly) |
| keepOriginal | checkbox | Non | Preserve original EXIF data while adding new information |
Les paramètres de type fichier doivent être téléchargés d'abord via POST /upload/image-exif-editor pour obtenir filePath, puis filePath doit être passé au champ de fichier correspondant.
Format de réponse
{
"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)"
}
Documentation de MCP
Ajoutez cet outil à votre configuration de serveur MCP:
{
"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"
}
}
}
Vous pouvez chaîner plusieurs outils, par ex.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 outils.
Prend en charge les liens de fichiers URL ou la codification Base64 pour les paramètres de fichier.
Si vous rencontrez des problèmes, veuillez nous contacter à [email protected]