intelligent pdf resize?

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
iaw4
Posts: 4
Joined: 2010-08-01T07:13:04-07:00
Authentication code: 8675308

intelligent pdf resize?

Post by iaw4 »

I have a multipage pdf file, which I want to shrink from 8.25 x 11 to 8 x 10. (createspace does not know about letter paper. grrrr...). presumably,

Code: Select all

  mogrify -resize 90% file.pdf
unfortunately, after some warnings that OSX Quartz screwed up some stuff ( **** Warning: considering '0000000000 00000 n' as a free entry ), the mogrified file is wholly different. It has grown from 6MB to 60MB. I thought postscript and pdf could be scaled just with a few commands. I presume the problem is that imagemagick first converts it into an internal format and then writes it out again.

Does anyone know of a utility that can do pdf resizing under OSX or linux?

/iaw
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: intelligent pdf resize?

Post by fmw42 »

User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: intelligent pdf resize?

Post by anthony »

That last like is most important.

IM is not a vector image processor. Generating a PDF to a PDF is NOT a good idea.

Acroread print function generally handles 'shrink to fit paper' very well. It is free!!!
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply