Convert many images to one PDF on Mac
How can I convert about 100 PNGs to one PDF on a Mac? I'm open to using the command line if it helps.
I have tried using iPhoto, but it quits, not sure why. Saving from Preview doesn't quite do what I want. Thoughts?
macos command-line pdf images png
add a comment |
How can I convert about 100 PNGs to one PDF on a Mac? I'm open to using the command line if it helps.
I have tried using iPhoto, but it quits, not sure why. Saving from Preview doesn't quite do what I want. Thoughts?
macos command-line pdf images png
Duplicate question on AskDifferent: apple.stackexchange.com/questions/11163/…
– tir38
Jan 3 '18 at 21:54
add a comment |
How can I convert about 100 PNGs to one PDF on a Mac? I'm open to using the command line if it helps.
I have tried using iPhoto, but it quits, not sure why. Saving from Preview doesn't quite do what I want. Thoughts?
macos command-line pdf images png
How can I convert about 100 PNGs to one PDF on a Mac? I'm open to using the command line if it helps.
I have tried using iPhoto, but it quits, not sure why. Saving from Preview doesn't quite do what I want. Thoughts?
macos command-line pdf images png
macos command-line pdf images png
edited Feb 16 '16 at 15:59
user162573
asked Oct 25 '11 at 5:51
tekknolagitekknolagi
5702933
5702933
Duplicate question on AskDifferent: apple.stackexchange.com/questions/11163/…
– tir38
Jan 3 '18 at 21:54
add a comment |
Duplicate question on AskDifferent: apple.stackexchange.com/questions/11163/…
– tir38
Jan 3 '18 at 21:54
Duplicate question on AskDifferent: apple.stackexchange.com/questions/11163/…
– tir38
Jan 3 '18 at 21:54
Duplicate question on AskDifferent: apple.stackexchange.com/questions/11163/…
– tir38
Jan 3 '18 at 21:54
add a comment |
6 Answers
6
active
oldest
votes
If you have Leopard (10.5 or later) or Lion the easiest way is to use Preview. Just do the following:
- Open the first image in Preview
- Show the the sidebar (Shift-Command-D)
- Drag any additional images to the sidebar
- Go to File > Print (Command P)
- In the PDF dropdown list select Save as PDF
That's it! You should now have a PDF containing all your images.
If that doesn't work for you, you should look at any third-party solutions such as Adobe Acrobat Pro which has a combine feature or PDFLab.
1
+1 - My suggested solution as well. I've used this method to combine several PDFs by printing, then choosing "Save as PDF" from the print panel.
– SplinterReality
Oct 25 '11 at 7:59
1
For me in Snow Leopard, File > Print only printed the first image. I had to select File > Print Selected Images in order to print all of them.
– kldavis4
Jul 23 '14 at 21:09
3
Shift-Cmd-D didn't open sidebar for me, I had to explicitly use View -> Thumbnails (option - Cmd - 2) - on mac os x el capitan v10.11.3 - otherwise the instructions worked a charm.
– arcseldon
Feb 22 '16 at 3:58
It's 2018 and this method still works like charm. Thanks for this answer.
– Lucio Mollinedo
Jun 12 '18 at 16:27
add a comment |
I prefer using command line tools such as ImageMagick for this type of work. You can install IM with Homebrew:
brew install imagemagick
Afterwards you can do
convert *.jpg output.pdf
and if the resulting PDF is a bit too big you can try:
convert -quality 60 *.jpg output.pdf
Of course ImageMagick also works on other Unix systems, and even on cygwin.
(If you want a specific order you can also write out the .jpg
filenames one by one. Or use *
and rename the .jpg
s in alphabetical order.)
after running this command, every image that *.jpg expanded to was overwritten with the first image, and only the final one was saved to PDF
– user5359531
Nov 1 '16 at 18:25
@user5359531 Strange. For me this has worked perfectly many times before and to double check I just tried it again. No problem. What was the exact command you ran? And which version?convert --version|head -1
gives meVersion: ImageMagick 6.9.5-2 Q16 x86_64 2016-07-13 http://www.imagemagick.org
– guaka
Nov 1 '16 at 22:48
how do you order the pages?
– JohnnyQ
Jan 19 '17 at 13:43
1
@JohnnyQ Name the image files in the order that you want the pages to appear in the PDF.
– CoreDumpError
Jan 23 '17 at 20:25
This. It works beautifully, for any aspect ratio - the Print answer above is more of a hack than anything else.
– Vlad
Apr 3 '18 at 14:28
|
show 1 more comment
My method is similar to Marcus's, but works a little better for me when the images are all different sizes and you don't want the PDF to just be all 8.5x11 but to keep each page the size of the original image.
- Open the first image in Preview
- Show thumbnails (Command-option-2)
- Drag any additional images to the sidebar
After this we diverge:
- Select all image thumbnails in the sidebar (select one by clicking, then Command-A)
- File > Export Selected Images...
- Select or create a folder to hold your temporary images, set Format to PDF, and click Choose
- Close all original images
- Open the LAST exported PDF in Preview (this will become the last page)
- Drag all the other exported PDFs to the sidebar and drop ON TOP of the thumbnail for the exported PDF you just opened
- This should create a multipage PDF with the images in the same order they were in the Finder. Rename it so you can find it easily, save and you're done.
This method worked very well for me. The Accepted Answer is very convenient, but as @Dave mentioned, doesn't work so well if your images are different sizes. The Accepted Answer's method also results in a margin around the edge of the PDF, presumably because the print dialog automatically adds a bleed edge. Also, Preview allows you to drag and drop all the other PDFs and add them to the first (or last) PDF in one fell swoop. You can also reorder the pages in the resulting PDF by dragging and dropping.
– Zkoh
May 22 '15 at 3:33
Doesn't work on Yosemite. Step 2 shows a warning alert and exits the process.
– a20
Sep 23 '15 at 13:40
add a comment |
On more current versions of OSX, you may be better off using the native command line tool sips
- see the answered Stack Overflow question 6349984, which converts from pdf to png. It should be far easier to script sips
(which has been available since ~2009) than click multiple times within Preview.
Essentially,
sips -s format pdf input-png-file-path --out output-pdf-file-path
add a comment |
A much simpler way is to use the rather overlooked app Automator, that you find in the Applications folder.
This link shows exactly how: Use Automator to combine your research photos into one PDF
1
Please quote the essential parts of the answer from the reference link(s), as the answer can become invalid if the linked page(s) change.
– DavidPostill♦
May 2 '17 at 10:40
add a comment |
I highly recommend the Python CLI program img2pdf
for lossless conversion:
https://gitlab.mister-muffin.de/josch/img2pdf
Example usage:
img2pdf img1.png img2.jpg -o out.pdf
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%2f350201%2fconvert-many-images-to-one-pdf-on-mac%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you have Leopard (10.5 or later) or Lion the easiest way is to use Preview. Just do the following:
- Open the first image in Preview
- Show the the sidebar (Shift-Command-D)
- Drag any additional images to the sidebar
- Go to File > Print (Command P)
- In the PDF dropdown list select Save as PDF
That's it! You should now have a PDF containing all your images.
If that doesn't work for you, you should look at any third-party solutions such as Adobe Acrobat Pro which has a combine feature or PDFLab.
1
+1 - My suggested solution as well. I've used this method to combine several PDFs by printing, then choosing "Save as PDF" from the print panel.
– SplinterReality
Oct 25 '11 at 7:59
1
For me in Snow Leopard, File > Print only printed the first image. I had to select File > Print Selected Images in order to print all of them.
– kldavis4
Jul 23 '14 at 21:09
3
Shift-Cmd-D didn't open sidebar for me, I had to explicitly use View -> Thumbnails (option - Cmd - 2) - on mac os x el capitan v10.11.3 - otherwise the instructions worked a charm.
– arcseldon
Feb 22 '16 at 3:58
It's 2018 and this method still works like charm. Thanks for this answer.
– Lucio Mollinedo
Jun 12 '18 at 16:27
add a comment |
If you have Leopard (10.5 or later) or Lion the easiest way is to use Preview. Just do the following:
- Open the first image in Preview
- Show the the sidebar (Shift-Command-D)
- Drag any additional images to the sidebar
- Go to File > Print (Command P)
- In the PDF dropdown list select Save as PDF
That's it! You should now have a PDF containing all your images.
If that doesn't work for you, you should look at any third-party solutions such as Adobe Acrobat Pro which has a combine feature or PDFLab.
1
+1 - My suggested solution as well. I've used this method to combine several PDFs by printing, then choosing "Save as PDF" from the print panel.
– SplinterReality
Oct 25 '11 at 7:59
1
For me in Snow Leopard, File > Print only printed the first image. I had to select File > Print Selected Images in order to print all of them.
– kldavis4
Jul 23 '14 at 21:09
3
Shift-Cmd-D didn't open sidebar for me, I had to explicitly use View -> Thumbnails (option - Cmd - 2) - on mac os x el capitan v10.11.3 - otherwise the instructions worked a charm.
– arcseldon
Feb 22 '16 at 3:58
It's 2018 and this method still works like charm. Thanks for this answer.
– Lucio Mollinedo
Jun 12 '18 at 16:27
add a comment |
If you have Leopard (10.5 or later) or Lion the easiest way is to use Preview. Just do the following:
- Open the first image in Preview
- Show the the sidebar (Shift-Command-D)
- Drag any additional images to the sidebar
- Go to File > Print (Command P)
- In the PDF dropdown list select Save as PDF
That's it! You should now have a PDF containing all your images.
If that doesn't work for you, you should look at any third-party solutions such as Adobe Acrobat Pro which has a combine feature or PDFLab.
If you have Leopard (10.5 or later) or Lion the easiest way is to use Preview. Just do the following:
- Open the first image in Preview
- Show the the sidebar (Shift-Command-D)
- Drag any additional images to the sidebar
- Go to File > Print (Command P)
- In the PDF dropdown list select Save as PDF
That's it! You should now have a PDF containing all your images.
If that doesn't work for you, you should look at any third-party solutions such as Adobe Acrobat Pro which has a combine feature or PDFLab.
edited Apr 10 '12 at 23:02
1.21 gigawatts
84052044
84052044
answered Oct 25 '11 at 7:05
mekwallmekwall
1,4241311
1,4241311
1
+1 - My suggested solution as well. I've used this method to combine several PDFs by printing, then choosing "Save as PDF" from the print panel.
– SplinterReality
Oct 25 '11 at 7:59
1
For me in Snow Leopard, File > Print only printed the first image. I had to select File > Print Selected Images in order to print all of them.
– kldavis4
Jul 23 '14 at 21:09
3
Shift-Cmd-D didn't open sidebar for me, I had to explicitly use View -> Thumbnails (option - Cmd - 2) - on mac os x el capitan v10.11.3 - otherwise the instructions worked a charm.
– arcseldon
Feb 22 '16 at 3:58
It's 2018 and this method still works like charm. Thanks for this answer.
– Lucio Mollinedo
Jun 12 '18 at 16:27
add a comment |
1
+1 - My suggested solution as well. I've used this method to combine several PDFs by printing, then choosing "Save as PDF" from the print panel.
– SplinterReality
Oct 25 '11 at 7:59
1
For me in Snow Leopard, File > Print only printed the first image. I had to select File > Print Selected Images in order to print all of them.
– kldavis4
Jul 23 '14 at 21:09
3
Shift-Cmd-D didn't open sidebar for me, I had to explicitly use View -> Thumbnails (option - Cmd - 2) - on mac os x el capitan v10.11.3 - otherwise the instructions worked a charm.
– arcseldon
Feb 22 '16 at 3:58
It's 2018 and this method still works like charm. Thanks for this answer.
– Lucio Mollinedo
Jun 12 '18 at 16:27
1
1
+1 - My suggested solution as well. I've used this method to combine several PDFs by printing, then choosing "Save as PDF" from the print panel.
– SplinterReality
Oct 25 '11 at 7:59
+1 - My suggested solution as well. I've used this method to combine several PDFs by printing, then choosing "Save as PDF" from the print panel.
– SplinterReality
Oct 25 '11 at 7:59
1
1
For me in Snow Leopard, File > Print only printed the first image. I had to select File > Print Selected Images in order to print all of them.
– kldavis4
Jul 23 '14 at 21:09
For me in Snow Leopard, File > Print only printed the first image. I had to select File > Print Selected Images in order to print all of them.
– kldavis4
Jul 23 '14 at 21:09
3
3
Shift-Cmd-D didn't open sidebar for me, I had to explicitly use View -> Thumbnails (option - Cmd - 2) - on mac os x el capitan v10.11.3 - otherwise the instructions worked a charm.
– arcseldon
Feb 22 '16 at 3:58
Shift-Cmd-D didn't open sidebar for me, I had to explicitly use View -> Thumbnails (option - Cmd - 2) - on mac os x el capitan v10.11.3 - otherwise the instructions worked a charm.
– arcseldon
Feb 22 '16 at 3:58
It's 2018 and this method still works like charm. Thanks for this answer.
– Lucio Mollinedo
Jun 12 '18 at 16:27
It's 2018 and this method still works like charm. Thanks for this answer.
– Lucio Mollinedo
Jun 12 '18 at 16:27
add a comment |
I prefer using command line tools such as ImageMagick for this type of work. You can install IM with Homebrew:
brew install imagemagick
Afterwards you can do
convert *.jpg output.pdf
and if the resulting PDF is a bit too big you can try:
convert -quality 60 *.jpg output.pdf
Of course ImageMagick also works on other Unix systems, and even on cygwin.
(If you want a specific order you can also write out the .jpg
filenames one by one. Or use *
and rename the .jpg
s in alphabetical order.)
after running this command, every image that *.jpg expanded to was overwritten with the first image, and only the final one was saved to PDF
– user5359531
Nov 1 '16 at 18:25
@user5359531 Strange. For me this has worked perfectly many times before and to double check I just tried it again. No problem. What was the exact command you ran? And which version?convert --version|head -1
gives meVersion: ImageMagick 6.9.5-2 Q16 x86_64 2016-07-13 http://www.imagemagick.org
– guaka
Nov 1 '16 at 22:48
how do you order the pages?
– JohnnyQ
Jan 19 '17 at 13:43
1
@JohnnyQ Name the image files in the order that you want the pages to appear in the PDF.
– CoreDumpError
Jan 23 '17 at 20:25
This. It works beautifully, for any aspect ratio - the Print answer above is more of a hack than anything else.
– Vlad
Apr 3 '18 at 14:28
|
show 1 more comment
I prefer using command line tools such as ImageMagick for this type of work. You can install IM with Homebrew:
brew install imagemagick
Afterwards you can do
convert *.jpg output.pdf
and if the resulting PDF is a bit too big you can try:
convert -quality 60 *.jpg output.pdf
Of course ImageMagick also works on other Unix systems, and even on cygwin.
(If you want a specific order you can also write out the .jpg
filenames one by one. Or use *
and rename the .jpg
s in alphabetical order.)
after running this command, every image that *.jpg expanded to was overwritten with the first image, and only the final one was saved to PDF
– user5359531
Nov 1 '16 at 18:25
@user5359531 Strange. For me this has worked perfectly many times before and to double check I just tried it again. No problem. What was the exact command you ran? And which version?convert --version|head -1
gives meVersion: ImageMagick 6.9.5-2 Q16 x86_64 2016-07-13 http://www.imagemagick.org
– guaka
Nov 1 '16 at 22:48
how do you order the pages?
– JohnnyQ
Jan 19 '17 at 13:43
1
@JohnnyQ Name the image files in the order that you want the pages to appear in the PDF.
– CoreDumpError
Jan 23 '17 at 20:25
This. It works beautifully, for any aspect ratio - the Print answer above is more of a hack than anything else.
– Vlad
Apr 3 '18 at 14:28
|
show 1 more comment
I prefer using command line tools such as ImageMagick for this type of work. You can install IM with Homebrew:
brew install imagemagick
Afterwards you can do
convert *.jpg output.pdf
and if the resulting PDF is a bit too big you can try:
convert -quality 60 *.jpg output.pdf
Of course ImageMagick also works on other Unix systems, and even on cygwin.
(If you want a specific order you can also write out the .jpg
filenames one by one. Or use *
and rename the .jpg
s in alphabetical order.)
I prefer using command line tools such as ImageMagick for this type of work. You can install IM with Homebrew:
brew install imagemagick
Afterwards you can do
convert *.jpg output.pdf
and if the resulting PDF is a bit too big you can try:
convert -quality 60 *.jpg output.pdf
Of course ImageMagick also works on other Unix systems, and even on cygwin.
(If you want a specific order you can also write out the .jpg
filenames one by one. Or use *
and rename the .jpg
s in alphabetical order.)
edited Jan 24 '17 at 14:26
answered Dec 19 '14 at 14:50
guakaguaka
1,31911531
1,31911531
after running this command, every image that *.jpg expanded to was overwritten with the first image, and only the final one was saved to PDF
– user5359531
Nov 1 '16 at 18:25
@user5359531 Strange. For me this has worked perfectly many times before and to double check I just tried it again. No problem. What was the exact command you ran? And which version?convert --version|head -1
gives meVersion: ImageMagick 6.9.5-2 Q16 x86_64 2016-07-13 http://www.imagemagick.org
– guaka
Nov 1 '16 at 22:48
how do you order the pages?
– JohnnyQ
Jan 19 '17 at 13:43
1
@JohnnyQ Name the image files in the order that you want the pages to appear in the PDF.
– CoreDumpError
Jan 23 '17 at 20:25
This. It works beautifully, for any aspect ratio - the Print answer above is more of a hack than anything else.
– Vlad
Apr 3 '18 at 14:28
|
show 1 more comment
after running this command, every image that *.jpg expanded to was overwritten with the first image, and only the final one was saved to PDF
– user5359531
Nov 1 '16 at 18:25
@user5359531 Strange. For me this has worked perfectly many times before and to double check I just tried it again. No problem. What was the exact command you ran? And which version?convert --version|head -1
gives meVersion: ImageMagick 6.9.5-2 Q16 x86_64 2016-07-13 http://www.imagemagick.org
– guaka
Nov 1 '16 at 22:48
how do you order the pages?
– JohnnyQ
Jan 19 '17 at 13:43
1
@JohnnyQ Name the image files in the order that you want the pages to appear in the PDF.
– CoreDumpError
Jan 23 '17 at 20:25
This. It works beautifully, for any aspect ratio - the Print answer above is more of a hack than anything else.
– Vlad
Apr 3 '18 at 14:28
after running this command, every image that *.jpg expanded to was overwritten with the first image, and only the final one was saved to PDF
– user5359531
Nov 1 '16 at 18:25
after running this command, every image that *.jpg expanded to was overwritten with the first image, and only the final one was saved to PDF
– user5359531
Nov 1 '16 at 18:25
@user5359531 Strange. For me this has worked perfectly many times before and to double check I just tried it again. No problem. What was the exact command you ran? And which version?
convert --version|head -1
gives me Version: ImageMagick 6.9.5-2 Q16 x86_64 2016-07-13 http://www.imagemagick.org
– guaka
Nov 1 '16 at 22:48
@user5359531 Strange. For me this has worked perfectly many times before and to double check I just tried it again. No problem. What was the exact command you ran? And which version?
convert --version|head -1
gives me Version: ImageMagick 6.9.5-2 Q16 x86_64 2016-07-13 http://www.imagemagick.org
– guaka
Nov 1 '16 at 22:48
how do you order the pages?
– JohnnyQ
Jan 19 '17 at 13:43
how do you order the pages?
– JohnnyQ
Jan 19 '17 at 13:43
1
1
@JohnnyQ Name the image files in the order that you want the pages to appear in the PDF.
– CoreDumpError
Jan 23 '17 at 20:25
@JohnnyQ Name the image files in the order that you want the pages to appear in the PDF.
– CoreDumpError
Jan 23 '17 at 20:25
This. It works beautifully, for any aspect ratio - the Print answer above is more of a hack than anything else.
– Vlad
Apr 3 '18 at 14:28
This. It works beautifully, for any aspect ratio - the Print answer above is more of a hack than anything else.
– Vlad
Apr 3 '18 at 14:28
|
show 1 more comment
My method is similar to Marcus's, but works a little better for me when the images are all different sizes and you don't want the PDF to just be all 8.5x11 but to keep each page the size of the original image.
- Open the first image in Preview
- Show thumbnails (Command-option-2)
- Drag any additional images to the sidebar
After this we diverge:
- Select all image thumbnails in the sidebar (select one by clicking, then Command-A)
- File > Export Selected Images...
- Select or create a folder to hold your temporary images, set Format to PDF, and click Choose
- Close all original images
- Open the LAST exported PDF in Preview (this will become the last page)
- Drag all the other exported PDFs to the sidebar and drop ON TOP of the thumbnail for the exported PDF you just opened
- This should create a multipage PDF with the images in the same order they were in the Finder. Rename it so you can find it easily, save and you're done.
This method worked very well for me. The Accepted Answer is very convenient, but as @Dave mentioned, doesn't work so well if your images are different sizes. The Accepted Answer's method also results in a margin around the edge of the PDF, presumably because the print dialog automatically adds a bleed edge. Also, Preview allows you to drag and drop all the other PDFs and add them to the first (or last) PDF in one fell swoop. You can also reorder the pages in the resulting PDF by dragging and dropping.
– Zkoh
May 22 '15 at 3:33
Doesn't work on Yosemite. Step 2 shows a warning alert and exits the process.
– a20
Sep 23 '15 at 13:40
add a comment |
My method is similar to Marcus's, but works a little better for me when the images are all different sizes and you don't want the PDF to just be all 8.5x11 but to keep each page the size of the original image.
- Open the first image in Preview
- Show thumbnails (Command-option-2)
- Drag any additional images to the sidebar
After this we diverge:
- Select all image thumbnails in the sidebar (select one by clicking, then Command-A)
- File > Export Selected Images...
- Select or create a folder to hold your temporary images, set Format to PDF, and click Choose
- Close all original images
- Open the LAST exported PDF in Preview (this will become the last page)
- Drag all the other exported PDFs to the sidebar and drop ON TOP of the thumbnail for the exported PDF you just opened
- This should create a multipage PDF with the images in the same order they were in the Finder. Rename it so you can find it easily, save and you're done.
This method worked very well for me. The Accepted Answer is very convenient, but as @Dave mentioned, doesn't work so well if your images are different sizes. The Accepted Answer's method also results in a margin around the edge of the PDF, presumably because the print dialog automatically adds a bleed edge. Also, Preview allows you to drag and drop all the other PDFs and add them to the first (or last) PDF in one fell swoop. You can also reorder the pages in the resulting PDF by dragging and dropping.
– Zkoh
May 22 '15 at 3:33
Doesn't work on Yosemite. Step 2 shows a warning alert and exits the process.
– a20
Sep 23 '15 at 13:40
add a comment |
My method is similar to Marcus's, but works a little better for me when the images are all different sizes and you don't want the PDF to just be all 8.5x11 but to keep each page the size of the original image.
- Open the first image in Preview
- Show thumbnails (Command-option-2)
- Drag any additional images to the sidebar
After this we diverge:
- Select all image thumbnails in the sidebar (select one by clicking, then Command-A)
- File > Export Selected Images...
- Select or create a folder to hold your temporary images, set Format to PDF, and click Choose
- Close all original images
- Open the LAST exported PDF in Preview (this will become the last page)
- Drag all the other exported PDFs to the sidebar and drop ON TOP of the thumbnail for the exported PDF you just opened
- This should create a multipage PDF with the images in the same order they were in the Finder. Rename it so you can find it easily, save and you're done.
My method is similar to Marcus's, but works a little better for me when the images are all different sizes and you don't want the PDF to just be all 8.5x11 but to keep each page the size of the original image.
- Open the first image in Preview
- Show thumbnails (Command-option-2)
- Drag any additional images to the sidebar
After this we diverge:
- Select all image thumbnails in the sidebar (select one by clicking, then Command-A)
- File > Export Selected Images...
- Select or create a folder to hold your temporary images, set Format to PDF, and click Choose
- Close all original images
- Open the LAST exported PDF in Preview (this will become the last page)
- Drag all the other exported PDFs to the sidebar and drop ON TOP of the thumbnail for the exported PDF you just opened
- This should create a multipage PDF with the images in the same order they were in the Finder. Rename it so you can find it easily, save and you're done.
answered Dec 1 '14 at 4:22
DaveDave
6611
6611
This method worked very well for me. The Accepted Answer is very convenient, but as @Dave mentioned, doesn't work so well if your images are different sizes. The Accepted Answer's method also results in a margin around the edge of the PDF, presumably because the print dialog automatically adds a bleed edge. Also, Preview allows you to drag and drop all the other PDFs and add them to the first (or last) PDF in one fell swoop. You can also reorder the pages in the resulting PDF by dragging and dropping.
– Zkoh
May 22 '15 at 3:33
Doesn't work on Yosemite. Step 2 shows a warning alert and exits the process.
– a20
Sep 23 '15 at 13:40
add a comment |
This method worked very well for me. The Accepted Answer is very convenient, but as @Dave mentioned, doesn't work so well if your images are different sizes. The Accepted Answer's method also results in a margin around the edge of the PDF, presumably because the print dialog automatically adds a bleed edge. Also, Preview allows you to drag and drop all the other PDFs and add them to the first (or last) PDF in one fell swoop. You can also reorder the pages in the resulting PDF by dragging and dropping.
– Zkoh
May 22 '15 at 3:33
Doesn't work on Yosemite. Step 2 shows a warning alert and exits the process.
– a20
Sep 23 '15 at 13:40
This method worked very well for me. The Accepted Answer is very convenient, but as @Dave mentioned, doesn't work so well if your images are different sizes. The Accepted Answer's method also results in a margin around the edge of the PDF, presumably because the print dialog automatically adds a bleed edge. Also, Preview allows you to drag and drop all the other PDFs and add them to the first (or last) PDF in one fell swoop. You can also reorder the pages in the resulting PDF by dragging and dropping.
– Zkoh
May 22 '15 at 3:33
This method worked very well for me. The Accepted Answer is very convenient, but as @Dave mentioned, doesn't work so well if your images are different sizes. The Accepted Answer's method also results in a margin around the edge of the PDF, presumably because the print dialog automatically adds a bleed edge. Also, Preview allows you to drag and drop all the other PDFs and add them to the first (or last) PDF in one fell swoop. You can also reorder the pages in the resulting PDF by dragging and dropping.
– Zkoh
May 22 '15 at 3:33
Doesn't work on Yosemite. Step 2 shows a warning alert and exits the process.
– a20
Sep 23 '15 at 13:40
Doesn't work on Yosemite. Step 2 shows a warning alert and exits the process.
– a20
Sep 23 '15 at 13:40
add a comment |
On more current versions of OSX, you may be better off using the native command line tool sips
- see the answered Stack Overflow question 6349984, which converts from pdf to png. It should be far easier to script sips
(which has been available since ~2009) than click multiple times within Preview.
Essentially,
sips -s format pdf input-png-file-path --out output-pdf-file-path
add a comment |
On more current versions of OSX, you may be better off using the native command line tool sips
- see the answered Stack Overflow question 6349984, which converts from pdf to png. It should be far easier to script sips
(which has been available since ~2009) than click multiple times within Preview.
Essentially,
sips -s format pdf input-png-file-path --out output-pdf-file-path
add a comment |
On more current versions of OSX, you may be better off using the native command line tool sips
- see the answered Stack Overflow question 6349984, which converts from pdf to png. It should be far easier to script sips
(which has been available since ~2009) than click multiple times within Preview.
Essentially,
sips -s format pdf input-png-file-path --out output-pdf-file-path
On more current versions of OSX, you may be better off using the native command line tool sips
- see the answered Stack Overflow question 6349984, which converts from pdf to png. It should be far easier to script sips
(which has been available since ~2009) than click multiple times within Preview.
Essentially,
sips -s format pdf input-png-file-path --out output-pdf-file-path
edited Apr 12 '18 at 10:19
Kamil Maciorowski
27.3k155982
27.3k155982
answered Apr 12 '18 at 9:42
JasonJason
111
111
add a comment |
add a comment |
A much simpler way is to use the rather overlooked app Automator, that you find in the Applications folder.
This link shows exactly how: Use Automator to combine your research photos into one PDF
1
Please quote the essential parts of the answer from the reference link(s), as the answer can become invalid if the linked page(s) change.
– DavidPostill♦
May 2 '17 at 10:40
add a comment |
A much simpler way is to use the rather overlooked app Automator, that you find in the Applications folder.
This link shows exactly how: Use Automator to combine your research photos into one PDF
1
Please quote the essential parts of the answer from the reference link(s), as the answer can become invalid if the linked page(s) change.
– DavidPostill♦
May 2 '17 at 10:40
add a comment |
A much simpler way is to use the rather overlooked app Automator, that you find in the Applications folder.
This link shows exactly how: Use Automator to combine your research photos into one PDF
A much simpler way is to use the rather overlooked app Automator, that you find in the Applications folder.
This link shows exactly how: Use Automator to combine your research photos into one PDF
answered May 2 '17 at 10:15
Lykke MadsenLykke Madsen
1
1
1
Please quote the essential parts of the answer from the reference link(s), as the answer can become invalid if the linked page(s) change.
– DavidPostill♦
May 2 '17 at 10:40
add a comment |
1
Please quote the essential parts of the answer from the reference link(s), as the answer can become invalid if the linked page(s) change.
– DavidPostill♦
May 2 '17 at 10:40
1
1
Please quote the essential parts of the answer from the reference link(s), as the answer can become invalid if the linked page(s) change.
– DavidPostill♦
May 2 '17 at 10:40
Please quote the essential parts of the answer from the reference link(s), as the answer can become invalid if the linked page(s) change.
– DavidPostill♦
May 2 '17 at 10:40
add a comment |
I highly recommend the Python CLI program img2pdf
for lossless conversion:
https://gitlab.mister-muffin.de/josch/img2pdf
Example usage:
img2pdf img1.png img2.jpg -o out.pdf
add a comment |
I highly recommend the Python CLI program img2pdf
for lossless conversion:
https://gitlab.mister-muffin.de/josch/img2pdf
Example usage:
img2pdf img1.png img2.jpg -o out.pdf
add a comment |
I highly recommend the Python CLI program img2pdf
for lossless conversion:
https://gitlab.mister-muffin.de/josch/img2pdf
Example usage:
img2pdf img1.png img2.jpg -o out.pdf
I highly recommend the Python CLI program img2pdf
for lossless conversion:
https://gitlab.mister-muffin.de/josch/img2pdf
Example usage:
img2pdf img1.png img2.jpg -o out.pdf
answered Jan 24 at 17:44
Adam EricksonAdam Erickson
1394
1394
add a comment |
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.
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%2f350201%2fconvert-many-images-to-one-pdf-on-mac%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
Duplicate question on AskDifferent: apple.stackexchange.com/questions/11163/…
– tir38
Jan 3 '18 at 21:54