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?










share|improve this question
























  • Add version of ImageMagick to your question.
    – Cyrus
    Nov 16 '14 at 20:16















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?










share|improve this question
























  • Add version of ImageMagick to your question.
    – Cyrus
    Nov 16 '14 at 20:16













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?










share|improve this question















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 26 at 16:05









Zanna

49.1k13123234




49.1k13123234










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 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










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.






share|improve this answer





















  • 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


















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






share|improve this answer





















    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "89"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    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

























    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.






    share|improve this answer





















    • 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















    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.






    share|improve this answer





















    • 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













    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.






    share|improve this answer












    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.







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Nov 16 '14 at 21:40









    Jan

    7,18512233




    7,18512233












    • 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




    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












    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






    share|improve this answer

























      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






      share|improve this answer























        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






        share|improve this answer












        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







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jul 21 '16 at 19:02









        Kevin Banjo

        1




        1






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            How did Captain America manage to do this?

            迪纳利

            南乌拉尔铁路局