Convert tiff to gif in php

I need to convert tiff file to gif. can anyone give me a php or python script for this?

+3
source share
2 answers

Try phpThumb in combination with Imagick in PHP.

+1
source

http://php.net/manual/en/book.imagick.php

try
{
        $image = '/tmp/image.tiff';    
        $im = new Imagick();    
        $im->pingImage( $image );    
        $im->readImage( $image );    
        $im->setImageFormat( 'gif' );    
        $im->writeImage( '/tmp/image.gif' );
}
catch(Exception $e)
{
        echo $e->getMessage();
}
+1
source

Source: https://habr.com/ru/post/1770683/


All Articles