douhan9467 2013-07-09 22:28
浏览 290
已采纳

在没有Imagick的情况下,在PHP中将TIFF图像转换为PNG / JPG / GIF

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.

  • 写回答

1条回答 默认 最新

  • ds20021205 2013-07-09 22:38
    关注

    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

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?