Search found 2 matches
- 2015-01-03T05:46:58-07:00
- Forum: Users
- Topic: Converting images into pdf files with equal sizes?
- Replies: 4
- Views: 9074
Re: Converting images into pdf files with equal sizes?
Have you tried changing the resolution so they all match? Use "-density 180" or "-density 150". I solve the problem with these commands: mogrify -resize x1000 *.jpg for i in *.jpg; do convert -density x1000 -units PixelsPerInch ${i} ${i}; done for i in *.jpg; do convert ${i} ${i/.jpg/.pdf}; done ...
- 2015-01-03T03:03:05-07:00
- Forum: Users
- Topic: Converting images into pdf files with equal sizes?
- Replies: 4
- Views: 9074
Converting images into pdf files with equal sizes?
Hi, on my Arch linux I'm using ImageMagick 6.9.0-2 Q16 x86_64 2014-12-31. I have a directory with many ( over 300 ) jpg images. These images are scanned pages from a book. Images have following properties: geometry: 900x1200 resolution: 180x180 from the first image to the 27. image but from 28 ...