Edit jpeg metadata
From UBot Studio
(Difference between revisions)
(Created page with "This command will edit the jpeg data with the key provided. The command is an Image command. '''Image File:'''The image file with the data being changed. '''Key:''' The...") |
m (LillyT moved page EditJpegMetadata to Edit jpeg metadata) |
||
(2 intermediate revisions by one user not shown) | |||
Line 11: | Line 11: | ||
== Example == | == Example == | ||
<pre> | <pre> | ||
− | + | edit jpeg metadata("C:\\Users\\Downloads\\combinedimgs.jpg","comment","two images combined") | |
− | set(#metadat,$ | + | set(#metadat,$get image metadata("C:\\Users\\Downloads\\combinedimgs.jpg"),"Global") |
</pre> | </pre> | ||
+ | Running the script will edit the comment metadata and set it to the value "two images combined". | ||
[[File:metacomm.png]] | [[File:metacomm.png]] |
Latest revision as of 16:41, 13 November 2017
This command will edit the jpeg data with the key provided.
The command is an Image command.
Image File:The image file with the data being changed.
Key: The key for the data being changed(comment, label, date:create,signature, and caption)
Value: The value being set for the metadata key.
[edit] Example
edit jpeg metadata("C:\\Users\\Downloads\\combinedimgs.jpg","comment","two images combined") set(#metadat,$get image metadata("C:\\Users\\Downloads\\combinedimgs.jpg"),"Global")
Running the script will edit the comment metadata and set it to the value "two images combined".