Convert PDF to JPG without Imagemagick












1














Is there a way to convert a common UTF-8 encoded PDF to a JPG without using ImageMagick or Ghostscript?



The reason I'm asking is, that I have to replace or "simply" double layer a small part (date) of a PDF document. I don't want to install all that stuff for it and wonder if there is a different way to do it.



Sadly Google couldn't give me an anwser so I decided to give SU a chance.










share|improve this question















migrated from stackoverflow.com Jun 7 '13 at 17:44


This question came from our site for professional and enthusiast programmers.











  • 2




    Why is it migrated here? The question is about PHP, so it belong on stackoverflow.
    – Victor Marchuk
    Feb 23 '16 at 9:15
















1














Is there a way to convert a common UTF-8 encoded PDF to a JPG without using ImageMagick or Ghostscript?



The reason I'm asking is, that I have to replace or "simply" double layer a small part (date) of a PDF document. I don't want to install all that stuff for it and wonder if there is a different way to do it.



Sadly Google couldn't give me an anwser so I decided to give SU a chance.










share|improve this question















migrated from stackoverflow.com Jun 7 '13 at 17:44


This question came from our site for professional and enthusiast programmers.











  • 2




    Why is it migrated here? The question is about PHP, so it belong on stackoverflow.
    – Victor Marchuk
    Feb 23 '16 at 9:15














1












1








1







Is there a way to convert a common UTF-8 encoded PDF to a JPG without using ImageMagick or Ghostscript?



The reason I'm asking is, that I have to replace or "simply" double layer a small part (date) of a PDF document. I don't want to install all that stuff for it and wonder if there is a different way to do it.



Sadly Google couldn't give me an anwser so I decided to give SU a chance.










share|improve this question















Is there a way to convert a common UTF-8 encoded PDF to a JPG without using ImageMagick or Ghostscript?



The reason I'm asking is, that I have to replace or "simply" double layer a small part (date) of a PDF document. I don't want to install all that stuff for it and wonder if there is a different way to do it.



Sadly Google couldn't give me an anwser so I decided to give SU a chance.







php unix pdf jpeg






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jun 7 '13 at 19:46









terdon

41.1k885135




41.1k885135










asked Jun 7 '13 at 14:41









ThatMSG

10614




10614




migrated from stackoverflow.com Jun 7 '13 at 17:44


This question came from our site for professional and enthusiast programmers.






migrated from stackoverflow.com Jun 7 '13 at 17:44


This question came from our site for professional and enthusiast programmers.










  • 2




    Why is it migrated here? The question is about PHP, so it belong on stackoverflow.
    – Victor Marchuk
    Feb 23 '16 at 9:15














  • 2




    Why is it migrated here? The question is about PHP, so it belong on stackoverflow.
    – Victor Marchuk
    Feb 23 '16 at 9:15








2




2




Why is it migrated here? The question is about PHP, so it belong on stackoverflow.
– Victor Marchuk
Feb 23 '16 at 9:15




Why is it migrated here? The question is about PHP, so it belong on stackoverflow.
– Victor Marchuk
Feb 23 '16 at 9:15










4 Answers
4






active

oldest

votes


















0














If it is not to be done dynamically you can do that "by hand".
Every good PDF Printer does that. For example Bullzip or PDF24.
If you want to do it in a script, maybe you can also use one of the various online converters like http://pdf2jpg.net/ for instance.






share|improve this answer





























    0














    If you want to edit the resulting image file, you will need an image editor. If you are on a UNIX platform, that will probably be gimp.



    If so, you're in luck, gimp can handle PDFs, just open the file directly in gimp, edit it and save as you wish.






    share|improve this answer





























      0














      If you're using Mac OS X, just open it in Preview and then use Save As to export it as a JPEG. If you're not on OS X, perhaps you could edit your question to provide a lot more detail about your environment -- what kind of Unix are you using, what distribution, what packages do you have installed, and so on.






      share|improve this answer





























        0














        You can use GIMP, Adobe Photoshop, Adobe Acrobat ( > Save as JPG, JPEG).
        Or you can use the Online Converter as Stefan mentioned if the document is not private, sensitive.






        share|improve this answer

















        • 2




          Listing tools that can help in the process doesn't really explain how to accomplish what was asked. Can you expand your answer, or at least describe what makes the mentioned tools better for the task than random Google hits? Good guidance on recommending products here: meta.superuser.com/questions/5329/…. Thanks.
          – fixer1234
          Jan 10 '17 at 17:33











        Your Answer








        StackExchange.ready(function() {
        var channelOptions = {
        tags: "".split(" "),
        id: "3"
        };
        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',
        autoActivateHeartbeat: false,
        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%2fsuperuser.com%2fquestions%2f605016%2fconvert-pdf-to-jpg-without-imagemagick%23new-answer', 'question_page');
        }
        );

        Post as a guest















        Required, but never shown

























        4 Answers
        4






        active

        oldest

        votes








        4 Answers
        4






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        0














        If it is not to be done dynamically you can do that "by hand".
        Every good PDF Printer does that. For example Bullzip or PDF24.
        If you want to do it in a script, maybe you can also use one of the various online converters like http://pdf2jpg.net/ for instance.






        share|improve this answer


























          0














          If it is not to be done dynamically you can do that "by hand".
          Every good PDF Printer does that. For example Bullzip or PDF24.
          If you want to do it in a script, maybe you can also use one of the various online converters like http://pdf2jpg.net/ for instance.






          share|improve this answer
























            0












            0








            0






            If it is not to be done dynamically you can do that "by hand".
            Every good PDF Printer does that. For example Bullzip or PDF24.
            If you want to do it in a script, maybe you can also use one of the various online converters like http://pdf2jpg.net/ for instance.






            share|improve this answer












            If it is not to be done dynamically you can do that "by hand".
            Every good PDF Printer does that. For example Bullzip or PDF24.
            If you want to do it in a script, maybe you can also use one of the various online converters like http://pdf2jpg.net/ for instance.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Jun 7 '13 at 14:44







            Stefan
































                0














                If you want to edit the resulting image file, you will need an image editor. If you are on a UNIX platform, that will probably be gimp.



                If so, you're in luck, gimp can handle PDFs, just open the file directly in gimp, edit it and save as you wish.






                share|improve this answer


























                  0














                  If you want to edit the resulting image file, you will need an image editor. If you are on a UNIX platform, that will probably be gimp.



                  If so, you're in luck, gimp can handle PDFs, just open the file directly in gimp, edit it and save as you wish.






                  share|improve this answer
























                    0












                    0








                    0






                    If you want to edit the resulting image file, you will need an image editor. If you are on a UNIX platform, that will probably be gimp.



                    If so, you're in luck, gimp can handle PDFs, just open the file directly in gimp, edit it and save as you wish.






                    share|improve this answer












                    If you want to edit the resulting image file, you will need an image editor. If you are on a UNIX platform, that will probably be gimp.



                    If so, you're in luck, gimp can handle PDFs, just open the file directly in gimp, edit it and save as you wish.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Jun 7 '13 at 19:48









                    terdon

                    41.1k885135




                    41.1k885135























                        0














                        If you're using Mac OS X, just open it in Preview and then use Save As to export it as a JPEG. If you're not on OS X, perhaps you could edit your question to provide a lot more detail about your environment -- what kind of Unix are you using, what distribution, what packages do you have installed, and so on.






                        share|improve this answer


























                          0














                          If you're using Mac OS X, just open it in Preview and then use Save As to export it as a JPEG. If you're not on OS X, perhaps you could edit your question to provide a lot more detail about your environment -- what kind of Unix are you using, what distribution, what packages do you have installed, and so on.






                          share|improve this answer
























                            0












                            0








                            0






                            If you're using Mac OS X, just open it in Preview and then use Save As to export it as a JPEG. If you're not on OS X, perhaps you could edit your question to provide a lot more detail about your environment -- what kind of Unix are you using, what distribution, what packages do you have installed, and so on.






                            share|improve this answer












                            If you're using Mac OS X, just open it in Preview and then use Save As to export it as a JPEG. If you're not on OS X, perhaps you could edit your question to provide a lot more detail about your environment -- what kind of Unix are you using, what distribution, what packages do you have installed, and so on.







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Feb 23 '16 at 8:31









                            Mike Scott

                            4,1001217




                            4,1001217























                                0














                                You can use GIMP, Adobe Photoshop, Adobe Acrobat ( > Save as JPG, JPEG).
                                Or you can use the Online Converter as Stefan mentioned if the document is not private, sensitive.






                                share|improve this answer

















                                • 2




                                  Listing tools that can help in the process doesn't really explain how to accomplish what was asked. Can you expand your answer, or at least describe what makes the mentioned tools better for the task than random Google hits? Good guidance on recommending products here: meta.superuser.com/questions/5329/…. Thanks.
                                  – fixer1234
                                  Jan 10 '17 at 17:33
















                                0














                                You can use GIMP, Adobe Photoshop, Adobe Acrobat ( > Save as JPG, JPEG).
                                Or you can use the Online Converter as Stefan mentioned if the document is not private, sensitive.






                                share|improve this answer

















                                • 2




                                  Listing tools that can help in the process doesn't really explain how to accomplish what was asked. Can you expand your answer, or at least describe what makes the mentioned tools better for the task than random Google hits? Good guidance on recommending products here: meta.superuser.com/questions/5329/…. Thanks.
                                  – fixer1234
                                  Jan 10 '17 at 17:33














                                0












                                0








                                0






                                You can use GIMP, Adobe Photoshop, Adobe Acrobat ( > Save as JPG, JPEG).
                                Or you can use the Online Converter as Stefan mentioned if the document is not private, sensitive.






                                share|improve this answer












                                You can use GIMP, Adobe Photoshop, Adobe Acrobat ( > Save as JPG, JPEG).
                                Or you can use the Online Converter as Stefan mentioned if the document is not private, sensitive.







                                share|improve this answer












                                share|improve this answer



                                share|improve this answer










                                answered Jan 10 '17 at 16:54









                                Max

                                11




                                11








                                • 2




                                  Listing tools that can help in the process doesn't really explain how to accomplish what was asked. Can you expand your answer, or at least describe what makes the mentioned tools better for the task than random Google hits? Good guidance on recommending products here: meta.superuser.com/questions/5329/…. Thanks.
                                  – fixer1234
                                  Jan 10 '17 at 17:33














                                • 2




                                  Listing tools that can help in the process doesn't really explain how to accomplish what was asked. Can you expand your answer, or at least describe what makes the mentioned tools better for the task than random Google hits? Good guidance on recommending products here: meta.superuser.com/questions/5329/…. Thanks.
                                  – fixer1234
                                  Jan 10 '17 at 17:33








                                2




                                2




                                Listing tools that can help in the process doesn't really explain how to accomplish what was asked. Can you expand your answer, or at least describe what makes the mentioned tools better for the task than random Google hits? Good guidance on recommending products here: meta.superuser.com/questions/5329/…. Thanks.
                                – fixer1234
                                Jan 10 '17 at 17:33




                                Listing tools that can help in the process doesn't really explain how to accomplish what was asked. Can you expand your answer, or at least describe what makes the mentioned tools better for the task than random Google hits? Good guidance on recommending products here: meta.superuser.com/questions/5329/…. Thanks.
                                – fixer1234
                                Jan 10 '17 at 17:33


















                                draft saved

                                draft discarded




















































                                Thanks for contributing an answer to Super User!


                                • 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%2fsuperuser.com%2fquestions%2f605016%2fconvert-pdf-to-jpg-without-imagemagick%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

                                Paul Cézanne

                                UIScrollView CustomStickyHeader Resize height generates problems when scroll is too fast

                                Angular material date-picker (MatDatepicker) auto completes the date on focus out