Ramsay Smith
Ramsay Smith

Reputation: 1108

Converting a TIFF image to PNG/JPG/GIF in PHP without Imagick

I am working on a website for my client in which tiff images need to converted to png or jpg before they are assembled into a PDF.

I have read many articles, here and other sites, on this issue. They all recommend using Imagick to accomplish this. The problem is, my client's server does not have that extension installed, and the hosting company is unwilling to install the extension.

Nor is PDFLib installed on the server (which supports importing tiffs into a PDF).

Thanks.

Upvotes: 6

Views: 7218

Answers (1)

bitfiddler
bitfiddler

Reputation: 2115

This is tricky because of the tiff format. You can do this for most input formats with native PHP functions to create an image object from the source file and then save that using imagejpeg or imagepng. But tiff has patent issues and I don't think it's supported. Have a look at the PHP GD and image functions available on your server. May be some help in the comments here: http://php.net/manual/en/function.pdf-open-image-file.php

Upvotes: 2

Related Questions