2021-07-08 17:36:12 +07:00
|
|
|
{
|
|
|
|
"name": "exif",
|
|
|
|
"type": "function",
|
|
|
|
"groups": ["Files and Paths"],
|
|
|
|
"description": "Retrieves exif tag values from an image file.",
|
2022-01-13 08:56:17 -05:00
|
|
|
"arguments": [{
|
|
|
|
"arg": "path",
|
2022-02-07 11:41:29 +10:00
|
|
|
"description": "An image file path or a map layer value. If a map layer layer value is specified then the file source of the layer will be used."
|
2022-01-13 08:56:17 -05:00
|
|
|
}, {
|
|
|
|
"arg": "tag",
|
|
|
|
"optional": true,
|
|
|
|
"description": "The tag to return. If empty, a map with all exif tag values will be returned."
|
|
|
|
}],
|
|
|
|
"examples": [{
|
|
|
|
"expression": "exif('/my/photo.jpg','Exif.Image.Orientation')",
|
|
|
|
"returns": "0"
|
|
|
|
}],
|
|
|
|
"tags": ["exif", "retrieves", "tag", "file", "image", "values"]
|
2021-07-08 17:36:12 +07:00
|
|
|
}
|