How to create a TIFF file?
How to create a TIFF file in PHP? I want create a TIFF file and fax it. I know how to fax it but I don`t know how to create a TIFF file. Jaimz Yes, ImageMagick . Don't count on trying to use the PHP extension for it though, you're going to be making shell commands to the convert command. It's as simple as: system('/path/to/imagemagick/convert orginal_image.jpg new_image.tiff'); Hope that helps. Aneeska ImageMagick is the solution. 来源: https://stackoverflow.com/questions/1951101/how-to-create-a-tiff-file