Following link might help while converting from .TIF to .JPG
http://sourcecodemania.com/converting-m ... if-in-php/
Search found 2 matches
- 2011-10-17T11:15:32-07:00
- Forum: Users
- Topic: Problem with converting .TIF to .JPEG
- Replies: 11
- Views: 23211
- 2011-08-05T10:35:17-07:00
- Forum: MagickWand for PHP
- Topic: Conversion of Multipage TIF to JPG thumbnail very pixellated
- Replies: 1
- Views: 22653
Re: Conversion of Multipage TIF to JPG thumbnail very pixell
Following code will help to convert multipage tif to jpg thumbnail. For further details can be found at http://sourcecodemania.com/converting-multipage-tiff-file-to-jpggif-in-php/ <?php try { // Saving every page of a TIFF separately as a JPG thumbnail $images = new Imagick("testing.tif"); foreach ...