How to create a TIFF file?

后端 未结 2 1976
感情败类
感情败类 2020-12-18 08:47

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.

相关标签:
2条回答
  • 2020-12-18 09:24

    ImageMagick is the solution.

    0 讨论(0)
  • 2020-12-18 09:32

    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.

    0 讨论(0)
提交回复
热议问题