Convert PDF to JPG without Imagemagick
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
migrated from stackoverflow.com Jun 7 '13 at 17:44
This question came from our site for professional and enthusiast programmers.
add a comment |
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
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
add a comment |
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
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
php unix pdf jpeg
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
add a comment |
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
add a comment |
4 Answers
4
active
oldest
votes
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.
add a comment |
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.
add a comment |
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.
add a comment |
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.
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
add a comment |
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
});
}
});
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%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
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.
add a comment |
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.
add a comment |
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.
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.
answered Jun 7 '13 at 14:44
Stefan
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Jun 7 '13 at 19:48
terdon
41.1k885135
41.1k885135
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Feb 23 '16 at 8:31
Mike Scott
4,1001217
4,1001217
add a comment |
add a comment |
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
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%2fsuperuser.com%2fquestions%2f605016%2fconvert-pdf-to-jpg-without-imagemagick%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
2
Why is it migrated here? The question is about PHP, so it belong on stackoverflow.
– Victor Marchuk
Feb 23 '16 at 9:15