在我的php程序中没有显示Tiff图像的颜色框


Color box not showing Tiff images in my php program

在我的程序中,我无法使用颜色框查看tiff文件,我正在使用php codelgniter框架开发网站。

这可能是由于浏览器支持TIFF格式。

看看http://en.wikipedia.org/wiki/Comparison_of_web_browsers#Image_format_support支持的文件类型。

如果imagemagic安装在您的服务器上(大多数unix主机都有),它就像。。。

<?php
$exec = "convert /path/to/file.tiff /path/to/file.jpg";
exec($exec, $yaks);
//to view any errors >> // print_r($yaks);
?>

$image = new Imagick('something.tiff');
$image->setImageFormat('png');
echo $image;