Search found 5 matches
- 2017-03-22T09:49:53-07:00
- Forum: Users
- Topic: Converting Multiple Images into a PDF File
- Replies: 7
- Views: 51471
Re: Converting Multiple Images into a PDF File
I use an environment variable called IM, which is set to a directory that contains a v6 ImageMagick. f:\web\im>echo %IM% c:\im\ImageMagick-6.9.5-3-Q16\ So my scripts use "%IM%convert" to run that particular version of IM. I have about 50 versions installed. Another method is to tell IM at ...
- 2017-03-22T08:47:48-07:00
- Forum: Users
- Topic: Converting Multiple Images into a PDF File
- Replies: 7
- Views: 51471
Re: Converting Multiple Images into a PDF File
What's the problem? From your OP, you know how to montage two files together, to make a third. You can do that many times (or in a shell loop) to montage each Page*.png file with a image*xyz.png file. Then you can take each result, making a PDF with one page per result, as I showed you: magick ...
- 2017-03-22T06:46:16-07:00
- Forum: Users
- Topic: Converting Multiple Images into a PDF File
- Replies: 7
- Views: 51471
Re: Converting Multiple Images into a PDF File
snibgo, I have a second question for you, if I may. How about this scenario: I have several banners: Page1.png, Page2.png, ... Page10.png, and I have lots of images but they are in groups. Each group is identified with a special alphanumeric code, like "mhk" so, it looks like this: image1mhk.png ...
- 2017-03-22T06:30:37-07:00
- Forum: Users
- Topic: Converting Multiple Images into a PDF File
- Replies: 7
- Views: 51471
Re: Converting Multiple Images into a PDF File
You say you want the PDF "with each image having its own page". Then you say "I can't even get past just combining them into a single image". Which of these do you want? A PDF with a single page, with a single image that is a combination of all the input images? Then: magick montage *mhk* -mode ...
- 2017-03-21T15:25:29-07:00
- Forum: Users
- Topic: Converting Multiple Images into a PDF File
- Replies: 7
- Views: 51471
Converting Multiple Images into a PDF File
Hi, I have a folder with a bunch of images in it. Some images have a particular string in the filename, like "mhk". I need to grab only those images from that folder and put them into a PDF file, with each image having its own page. I tried different things but I can't even get past just combining ...