Trying to add timestamp to image but keep getting error unknown image property “%[exif:DateTimeOriginal]”
up vote
0
down vote
favorite
I want to put timestamps on all images in a directory based on the date created/modified.
I've seen a bunch of methods like this and this, but they all use the code %[exif:DateTimeOriginal]
which results in an error for me.
I can use the following code
convert input.png -annotate +100+100 "Hello" output.png
But I want to use this instead
convert input.png -annotate +100+100 %[exif:DateTimeOriginal] output.png
But it results in this error:
convert.im6: unknown image property "%[exif:DateTimeOriginal]" @ warning/property.c/InterpretImageProperties/3245.
Does anyone know a fix or can anyone suggest an alternative?
bash imagemagick image-processing
add a comment |
up vote
0
down vote
favorite
I want to put timestamps on all images in a directory based on the date created/modified.
I've seen a bunch of methods like this and this, but they all use the code %[exif:DateTimeOriginal]
which results in an error for me.
I can use the following code
convert input.png -annotate +100+100 "Hello" output.png
But I want to use this instead
convert input.png -annotate +100+100 %[exif:DateTimeOriginal] output.png
But it results in this error:
convert.im6: unknown image property "%[exif:DateTimeOriginal]" @ warning/property.c/InterpretImageProperties/3245.
Does anyone know a fix or can anyone suggest an alternative?
bash imagemagick image-processing
Add version of ImageMagick to your question.
– Cyrus
Nov 16 '14 at 20:16
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I want to put timestamps on all images in a directory based on the date created/modified.
I've seen a bunch of methods like this and this, but they all use the code %[exif:DateTimeOriginal]
which results in an error for me.
I can use the following code
convert input.png -annotate +100+100 "Hello" output.png
But I want to use this instead
convert input.png -annotate +100+100 %[exif:DateTimeOriginal] output.png
But it results in this error:
convert.im6: unknown image property "%[exif:DateTimeOriginal]" @ warning/property.c/InterpretImageProperties/3245.
Does anyone know a fix or can anyone suggest an alternative?
bash imagemagick image-processing
I want to put timestamps on all images in a directory based on the date created/modified.
I've seen a bunch of methods like this and this, but they all use the code %[exif:DateTimeOriginal]
which results in an error for me.
I can use the following code
convert input.png -annotate +100+100 "Hello" output.png
But I want to use this instead
convert input.png -annotate +100+100 %[exif:DateTimeOriginal] output.png
But it results in this error:
convert.im6: unknown image property "%[exif:DateTimeOriginal]" @ warning/property.c/InterpretImageProperties/3245.
Does anyone know a fix or can anyone suggest an alternative?
bash imagemagick image-processing
bash imagemagick image-processing
edited Nov 26 at 16:05
Zanna
49.3k13126236
49.3k13126236
asked Nov 16 '14 at 19:38
Charles Clayton
298214
298214
Add version of ImageMagick to your question.
– Cyrus
Nov 16 '14 at 20:16
add a comment |
Add version of ImageMagick to your question.
– Cyrus
Nov 16 '14 at 20:16
Add version of ImageMagick to your question.
– Cyrus
Nov 16 '14 at 20:16
Add version of ImageMagick to your question.
– Cyrus
Nov 16 '14 at 20:16
add a comment |
2 Answers
2
active
oldest
votes
up vote
1
down vote
This error indicates that the EXIF tag DateTimeOriginal
is not present in your image file, meaning that you can't use it to annotate the image.
I thought that might be true, but I tried a ton of different images and I thought at least one would have it. Is there an alternative to DateTimeOriginal I could use?
– Charles Clayton
Nov 17 '14 at 5:17
add a comment |
up vote
0
down vote
I don't know if you're still out there, but perhaps for other users this might help. Sometimes you can use the "file" command to see the metadata of your file. In mine, I could use the "timedate" tag
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
This error indicates that the EXIF tag DateTimeOriginal
is not present in your image file, meaning that you can't use it to annotate the image.
I thought that might be true, but I tried a ton of different images and I thought at least one would have it. Is there an alternative to DateTimeOriginal I could use?
– Charles Clayton
Nov 17 '14 at 5:17
add a comment |
up vote
1
down vote
This error indicates that the EXIF tag DateTimeOriginal
is not present in your image file, meaning that you can't use it to annotate the image.
I thought that might be true, but I tried a ton of different images and I thought at least one would have it. Is there an alternative to DateTimeOriginal I could use?
– Charles Clayton
Nov 17 '14 at 5:17
add a comment |
up vote
1
down vote
up vote
1
down vote
This error indicates that the EXIF tag DateTimeOriginal
is not present in your image file, meaning that you can't use it to annotate the image.
This error indicates that the EXIF tag DateTimeOriginal
is not present in your image file, meaning that you can't use it to annotate the image.
answered Nov 16 '14 at 21:40
Jan
7,20612233
7,20612233
I thought that might be true, but I tried a ton of different images and I thought at least one would have it. Is there an alternative to DateTimeOriginal I could use?
– Charles Clayton
Nov 17 '14 at 5:17
add a comment |
I thought that might be true, but I tried a ton of different images and I thought at least one would have it. Is there an alternative to DateTimeOriginal I could use?
– Charles Clayton
Nov 17 '14 at 5:17
I thought that might be true, but I tried a ton of different images and I thought at least one would have it. Is there an alternative to DateTimeOriginal I could use?
– Charles Clayton
Nov 17 '14 at 5:17
I thought that might be true, but I tried a ton of different images and I thought at least one would have it. Is there an alternative to DateTimeOriginal I could use?
– Charles Clayton
Nov 17 '14 at 5:17
add a comment |
up vote
0
down vote
I don't know if you're still out there, but perhaps for other users this might help. Sometimes you can use the "file" command to see the metadata of your file. In mine, I could use the "timedate" tag
add a comment |
up vote
0
down vote
I don't know if you're still out there, but perhaps for other users this might help. Sometimes you can use the "file" command to see the metadata of your file. In mine, I could use the "timedate" tag
add a comment |
up vote
0
down vote
up vote
0
down vote
I don't know if you're still out there, but perhaps for other users this might help. Sometimes you can use the "file" command to see the metadata of your file. In mine, I could use the "timedate" tag
I don't know if you're still out there, but perhaps for other users this might help. Sometimes you can use the "file" command to see the metadata of your file. In mine, I could use the "timedate" tag
answered Jul 21 '16 at 19:02
Kevin Banjo
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f550363%2ftrying-to-add-timestamp-to-image-but-keep-getting-error-unknown-image-property%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Add version of ImageMagick to your question.
– Cyrus
Nov 16 '14 at 20:16