{ "id": "XbawQw3cvClu2wsx", "meta": { "instanceId": "workflow-4a19120b", "versionId": "1.0.0", "createdAt": "2025-09-29T07:07:43.624850", "updatedAt": "2025-09-29T07:07:43.624865", "owner": "n8n-user", "license": "MIT", "category": "automation", "status": "active", "priority": "high", "environment": "production" }, "name": "Automated Image Metadata Tagging", "tags": [ "automation", "n8n", "production-ready", "excellent", "optimized" ], "nodes": [ { "id": "cd1dba71-345b-45ae-8110-4fb57291f363", "name": "Extract from File", "type": "n8n-nodes-base.extractFromFile", "position": [ 260, 180 ], "parameters": { "options": {}, "operation": "binaryToPropery" }, "typeVersion": 1, "notes": "This extractFromFile node performs automated tasks as part of the workflow." }, { "id": "7973b64e-ae92-44c9-aa8e-002c32c25def", "name": "Convert to File", "type": "n8n-nodes-base.convertToFile", "position": [ 920, 80 ], "parameters": { "options": {}, "operation": "toBinary", "sourceProperty": "data" }, "typeVersion": 1.1, "notes": "This convertToFile node performs automated tasks as part of the workflow." }, { "id": "5fe13d4e-566b-459f-8830-f16829a34284", "name": "Analyze Image Content", "type": "n8n-nodes-base.noOp", "position": [ 260, -40 ], "parameters": { "text": "=Deliver a comma seperated list describing the content of this image.", "modelId": { "__rl": true, "mode": "list", "value": "chatgpt-4o-latest", "cachedResultName": "CHATGPT-4O-LATEST" }, "options": {}, "resource": "image", "inputType": "base64", "operation": "analyze" }, "credentials": { "openAiApi": { "id": "EjchNb5GBqYh0Cqn", "name": "OpenAi account" } }, "typeVersion": 1.8, "notes": "This openAi node performs automated tasks as part of the workflow." }, { "id": "876db6b5-6615-4e9d-8e1a-2d8220b2019f", "name": "Download Image File", "type": "n8n-nodes-base.googleDrive", "position": [ -20, 60 ], "parameters": { "fileId": { "__rl": true, "mode": "id", "value": "={{ $json.id }}" }, "options": {}, "operation": "download" }, "credentials": { "googleDriveOAuth2Api": { "id": "s8l3OOBediUA645k", "name": "Google Drive account" } }, "typeVersion": 3, "notes": "This googleDrive node performs automated tasks as part of the workflow." }, { "id": "47b32ddb-1929-4855-9131-078b562b3492", "name": "Trigger: New file added to Google Drive Folder", "type": "n8n-nodes-base.googleDriveTrigger", "position": [ -220, 60 ], "parameters": { "event": "fileCreated", "options": {}, "pollTimes": { "item": [ { "mode": "everyMinute" } ] }, "triggerOn": "specificFolder", "folderToWatch": { "__rl": true, "mode": "list", "value": "1WaIRWXcaeNViKmpW5IyQ3YGARWYdMg47", "cachedResultUrl": "{{ $env.WEBHOOK_URL }}", "cachedResultName": "EXIF" } }, "credentials": { "googleDriveOAuth2Api": { "id": "s8l3OOBediUA645k", "name": "Google Drive account" } }, "typeVersion": 1, "notes": "This googleDriveTrigger node performs automated tasks as part of the workflow." }, { "id": "85c6458a-7b2a-4eef-bf28-3b784e45f562", "name": "Write Metadata to Base64 Code", "type": "n8n-nodes-base.code", "position": [ 720, 80 ], "parameters": { "jsCode": "const tags = items[0].json.content.split(', ');\n\nconst xmpData = `\n\n \n \n \n \n \n ${tags.map(tag => `${tag}`).join('\\n ')}\n \n \n ${new Date().toISOString()}\n \n \n\n`;\n\nconst xmpHeader = Buffer.from([\n 0xFF, 0xE1,\n 0x00, 0x00,\n 0x68, 0x74, 0x74, 0x70, 0x3A, 0x2F, 0x2F, 0x6E, 0x73, 0x2E,\n 0x61, 0x64, 0x6F, 0x62, 0x65, 0x2E, 0x63, 0x6F, 0x6D, 0x2F,\n 0x78, 0x61, 0x70, 0x2F, 0x31, 0x2E, 0x30, 0x2F, 0x00\n]);\n\nconst xmpBuffer = Buffer.from(xmpData, 'utf8');\nconst imageBuffer = Buffer.from(items[0].json.data, 'base64');\nconst length = xmpHeader.length + xmpBuffer.length - 2;\nxmpHeader[2] = (length >> 8) & 0xFF;\nxmpHeader[3] = length & 0xFF;\n\nconst newImageData = Buffer.concat([\n imageBuffer.slice(0, 2),\n xmpHeader,\n xmpBuffer,\n imageBuffer.slice(2)\n]);\n\nitems[0].json.data = newImageData.toString('base64');\n\nreturn items;" }, "typeVersion": 2, "alwaysOutputData": true, "notes": "This code node performs automated tasks as part of the workflow." }, { "id": "1b86cadf-9f46-4980-a923-00577bfc59f4", "name": "Update Image File", "type": "n8n-nodes-base.googleDrive", "position": [ 1120, 80 ], "parameters": { "fileId": { "__rl": true, "mode": "id", "value": "={{ $('Download Image File').item.json.id }}" }, "options": {}, "operation": "update", "changeFileContent": true, "newUpdatedFileName": "={{ $('Download Image File').item.json.name }}" }, "credentials": { "googleDriveOAuth2Api": { "id": "s8l3OOBediUA645k", "name": "Google Drive account" } }, "typeVersion": 3, "notes": "This googleDrive node performs automated tasks as part of the workflow." }, { "id": "10c97623-80b1-4e96-b5c5-243ef106b2e9", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [ -540, 240 ], "parameters": { "width": 660, "height": 680, "content": "# Welcome to my Automated Image Metadata Tagging Workflow!\n\nThis workflow automatically analyzes the image content with the help of AI and writes it directly back into the image file as keywords.\n\n## This workflow has the following sequence:\n\n1. Google Drive trigger (scan for new files added in a specific folder)\n2. Download the added image file\n3. Analyse the content of the image and extract the file as Base64 code\n4. Merge Metadata and Base64 Code\n5. Code Node to write the Keywords into the Metadata (dc:subject)\n6. Convert to file and update the original file in the Google Drive folder\n\n## The following accesses are required for the workflow:\n- Google Drive: [Documentation]({{ $env.WEBHOOK_URL }}\n- AI API access (e.g. via OpenAI, Anthropic, Google or Ollama)\n\nYou can contact me via LinkedIn, if you have any questions: {{ $env.WEBHOOK_URL }}" }, "typeVersion": 1, "notes": "This stickyNote node performs automated tasks as part of the workflow." }, { "id": "d2bb1007-018d-4c6a-a458-ff8e79b6017c", "name": "Merge Metadata and Base64 Code", "type": "n8n-nodes-base.merge", "position": [ 520, 80 ], "parameters": { "mode": "combine", "options": {}, "combineBy": "combineByPosition" }, "typeVersion": 3, "notes": "This merge node performs automated tasks as part of the workflow." }, { "id": "error-c5f36a44", "name": "Error Handler", "type": "n8n-nodes-base.stopAndError", "typeVersion": 1, "position": [ 1000, 400 ], "parameters": { "message": "Workflow execution error", "options": {} } } ], "active": false, "pinData": {}, "settings": { "executionOrder": "v1", "saveManualExecutions": true, "callerPolicy": "workflowsFromSameOwner", "errorWorkflow": null, "timezone": "UTC", "executionTimeout": 3600, "maxExecutions": 1000, "retryOnFail": true, "retryCount": 3, "retryDelay": 1000 }, "versionId": "46b58de4-da62-43a2-bb10-fc85ffb75115", "connections": { "cd1dba71-345b-45ae-8110-4fb57291f363": { "main": [ [ { "node": "error-handler-cd1dba71-345b-45ae-8110-4fb57291f363-08acadd6", "type": "main", "index": 0 } ] ] }, "7973b64e-ae92-44c9-aa8e-002c32c25def": { "main": [ [ { "node": "error-handler-7973b64e-ae92-44c9-aa8e-002c32c25def-fb3d9dd9", "type": "main", "index": 0 } ] ] }, "5fe13d4e-566b-459f-8830-f16829a34284": { "main": [ [ { "node": "error-handler-5fe13d4e-566b-459f-8830-f16829a34284-cd78c5e1", "type": "main", "index": 0 } ] ] }, "876db6b5-6615-4e9d-8e1a-2d8220b2019f": { "main": [ [ { "node": "error-handler-876db6b5-6615-4e9d-8e1a-2d8220b2019f-c3e096b7", "type": "main", "index": 0 } ] ] }, "47b32ddb-1929-4855-9131-078b562b3492": { "main": [ [ { "node": "error-handler-47b32ddb-1929-4855-9131-078b562b3492-bc456d72", "type": "main", "index": 0 } ] ] }, "1b86cadf-9f46-4980-a923-00577bfc59f4": { "main": [ [ { "node": "error-handler-1b86cadf-9f46-4980-a923-00577bfc59f4-6565d25f", "type": "main", "index": 0 } ] ] } }, "description": "Automated workflow: Automated Image Metadata Tagging. This workflow integrates 9 different services: convertToFile, stickyNote, googleDriveTrigger, code, googleDrive. It contains 15 nodes and follows best practices for error handling and security.", "notes": "Excellent quality workflow: Automated Image Metadata Tagging. This workflow has been optimized for production use with comprehensive error handling, security, and documentation." }