从任意 JPEG、TIFF、HEIC、PNG 或 WebP URL 提取 EXIF、GPS 坐标、相机参数和 IPTC 关键词。返回尺寸、相机厂商和型号、镜头、光圈、快门速度、ISO、GPS 经纬度、版权和 IPTC 关键词。为批量而生:输入 10,000 图片 URL,返回结构化数据行。适用于 OSINT 调查、照片取证、资产编目和版权审计。
# 通过 Apify API 启动运行 curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~image-metadata-extractor/runs?token=YOUR_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "imageUrls": [ "https://example.com/photo-1.jpg", "https://example.com/scene-2.heic", "https://example.com/wedding-3.tiff" ], "extractGps": true, "extractIptc": true }' # 或通过 MCP 与 AI 代理配合使用: # https://mcp.apify.com?tools=santamaria-automations/image-metadata-extractor
| 字段 | 类型 | 示例 |
|---|---|---|
| source_url | string | https://example.com/photo.jpg |
| width | integer | 4032 |
| height | integer | 3024 |
| camera_make | string | Apple |
| camera_model | string | iPhone 15 Pro |
| aperture | string | f/1.78 |
| iso | integer | 64 |
| date_taken | string | 2026-03-12T14:22:18Z |
| gps_latitude | number | 40.7589 |
| gps_longitude | number | -73.9851 |