Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
652 B
Plaintext
Raw Normal View History

{
"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-09 20:47:21 +01:00
"description": "An image file path or a map layer value. If a map 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"]
}