Search found 3 matches
- 2012-12-20T02:25:43-07:00
- Forum: Users
- Topic: Problem with multipage PDF to TIFF conversion
- Replies: 4
- Views: 9651
Re: Problem with multipage PDF to TIFF conversion
You will need to post a link to your pdf so that we may examine it. If your pdf contains transparency or alpha channel data then you may need to edit your delegates.xml file. see recent post at http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=22463#p93634 Now it works editing my ...
- 2012-12-19T02:13:27-07:00
- Forum: Users
- Topic: Problem with multipage PDF to TIFF conversion
- Replies: 4
- Views: 9651
Re: Problem with multipage PDF to TIFF conversion
c tiff supports multiple pages as well so you need to use +adjoin to tell it otherwise. see http://www.imagemagick.org/Usage/basics/#cmdline try convert -colorspace Gray -density 300 -depth 8 input.PDF +adjoin -background White -flatten output_%d.tif I've tried but the result is always the same ...
- 2012-12-18T02:28:31-07:00
- Forum: Users
- Topic: Problem with multipage PDF to TIFF conversion
- Replies: 4
- Views: 9651
Problem with multipage PDF to TIFF conversion
Hi, I'm a new ImageMagick user and first of all thanks for the forum. :) I'm trying to convert a multipage pdf file in several tiff files (one file per pdf page) but I get only the tiff that represents the first page of the pdf. I'm using this command: convert -background White -flatten -colorspace ...