Page 1 of 1

Tiff To PDF Conversion

Posted: 2011-01-17T08:05:36-07:00
by raju.balasundar
Hi,
I have converted tif to pdf. if the tiff have smaller resolution(864*1188) then the conversion made success. but for larger resolution(1728*2376) it doesn't convert. please advice.

>>>Sample high resolution image link
http://www.fileformat.info/format/tiff/ ... d/download
php code
$document = new Imagick($Saveloc); /// Saveloc - Tiff File Location, PdfFile- New PDF File Name
$document->setImageFormat("pdf");
$document->writeImages($PdfFile, true);
//exec("usr/bin/convert $Saveloc $PdfFile");

thanks a lot in advance.

Regards,
Raju.B

Re: Tiff To PDF Conversion

Posted: 2011-01-17T08:31:28-07:00
by magick
We converted your TIFF to PDF without complaint. We're using ImageMagick version 6.6.7-1.

Re: Tiff To PDF Conversion

Posted: 2011-01-18T00:00:24-07:00
by raju.balasundar
hi
we have worked with VERSION 6.2.8. let me know whether it is support or not?. If not then let me know working the version.

Re: Tiff To PDF Conversion

Posted: 2011-01-18T11:10:10-07:00
by fmw42
Note version 6.2.8 is ancient (about 400 versions old). I recommend you upgrade as high as you can. Many bugs and improvements have been made since 6.2.8.

Re: Tiff To PDF Conversion

Posted: 2011-01-18T21:54:28-07:00
by raju.balasundar
thanks 4 ur reply