问题
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.
回答1:
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.
回答2:
ImageMagick is the solution.
来源:https://stackoverflow.com/questions/1951101/how-to-create-a-tiff-file