Reputation: 8589
How can I convert images to .tiff with php? (im testing on win xp)
I remember I used imagemagick to do this but I cant find the code now, and couldnt find any example on google.
A code sample will be appreciated.
Also, is there a way to do it without imagemagick?
Upvotes: 0
Views: 8599
Reputation: 133
Following is the code sample that might be helpful for you.
<?php
try
{
$image = new Imagick("testing.jpg");
$image->writeImage("page.tiff");
}
catch(Exception $e)
{
echo $e->getMessage();
}
?>
Upvotes: 4