在我的程序中我无法使用颜色框查看tiff文件,我正在使用php codelgniter框架开发网站。
答案 0 :(得分:0)
这可能是由于浏览器支持TIFF格式。
查看http://en.wikipedia.org/wiki/Comparison_of_web_browsers#Image_format_support支持的文件类型。
答案 1 :(得分:0)
如果你的服务器上安装了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;