http://www.php.net/gdのフォーラムに、次のコメントが書かれています。
IE は TIFF ファイルを表示せず、標準の PHP ディストリビューションは TIFF との間の変換をサポートしていません。
ImageMagick ( http://www.imagemagick.org/script/index.php ) は、さまざまな形式の画像を読み取り、変換、および書き込むことができるフリー ソフトウェアです。Windows ユーザー向けには、PHP 拡張機能 php_magickwand_st.dll が含まれています (もちろん、PHP 5.0.4 で動作します)。
TIFF から JPEG に変換する場合、IE は CMYK JPG も表示できないため、CMYK カラー スペースから RGB カラー スペースにも変換する必要があります。注意: -TIFF ファイルには RGB または CMYK カラー スペースが含まれる場合があります -JPEG ファイルには RGB または CMYK カラー スペースが含まれる場合があります
ImageMagick 拡張機能を使用した関数の例を次に示します。 - TIFF を JPEG ファイル形式に変換する - CMIK を RGB 色空間に変換する - 画像解像度を 300 DPI に設定する (画像サイズをピクセル単位で変更しない)
<?php
function cmyk2rgb($file) {
$mgck_wnd = NewMagickWand();
MagickReadImage($mgck_wnd, $file);
$img_colspc = MagickGetImageColorspace($mgck_wnd);
if ($img_colspc == MW_CMYKColorspace) {
echo "$file was in CMYK format<br />";
MagickSetImageColorspace($mgck_wnd, MW_RGBColorspace);
}
MagickWriteImage($mgck_wnd, str_replace('.', '-rgb.', $file));
}
function tiff2jpg($file) {
$mgck_wnd = NewMagickWand();
MagickReadImage($mgck_wnd, $file);
$img_colspc = MagickGetImageColorspace($mgck_wnd);
if ($img_colspc == MW_CMYKColorspace) {
echo "$file was in CMYK format<br />";
MagickSetImageColorspace($mgck_wnd, MW_RGBColorspace);
}
MagickSetImageFormat($mgck_wnd, 'JPG' );
MagickWriteImage($mgck_wnd, str_replace('.tif', '.jpg', $file));
}
function to300dpi($file) {
$mgck_wnd = NewMagickWand();
MagickReadImage($mgck_wnd, $file);
$img_units = MagickGetImageUnits($mgck_wnd);
switch ($img_units) {
case MW_UndefinedResolution: $units= 'undefined'; break;
case MW_PixelsPerInchResolution: $units= 'PPI'; break;
case MW_PixelsPerCentimeterResolution: $units= 'PPcm'; break;
}
list($x_res, $y_res) = MagickGetImageResolution($mgck_wnd);
echo "$file<br /> x_res=$x_res $units - y_res=$y_res $units<br />";
if($x_res == 300 && $y_res == 300 && $img_units == MW_PixelsPerInchResolution) {return; }
MagickSetImageResolution($mgck_wnd, 300 , 300);
MagickSetImageUnits($mgck_wnd, MW_PixelsPerInchResolution);
MagickWriteImage($mgck_wnd, str_replace('.', '-300.', $file));
}
$file='photos/test-cmyk.tif';
//this is a TIFF file in CMYK format with a 96 DPI resolution
cmyk2rgb($file);
$file = str_replace('.', '-rgb.', $file);
to300dpi($file);
$file = str_replace('.', '-300.', $file);
tiff2jpg($file);
$file = str_replace('.tif', '.jpg', $file);
to300dpi($file);
/* no file name changes as ImageMagick reports 300 DPIs
$file = str_replace('.', '-300.', $file);
*/
list($width, $height, $type, $attr) = getimagesize($file);
$width = $width/3;
$height = $height/3;
echo "<img src=\"http://localhost/$file\" width=\"$width\" height=\"$height\" alt=\"getimagesize() example\" />";
echo "<br />$file => width=$width - height=$height - type=$type - attr=$attr<br /><br />";
$file='photos/test-rgb.tif';
//this is a TIFF file in RGB format with a 96 DPI resolution
cmyk2rgb($file);
$file = str_replace('.', '-rgb.', $file);
to300dpi($file);
$file = str_replace('.', '-300.', $file);
tiff2jpg($file);
$file = str_replace('.tif', '.jpg', $file);
to300dpi($file);
/* no file name changes as ImageMagick reports 300 DPIs
$file = str_replace('.', '-300.', $file);
*/
list($width, $height, $type, $attr) = getimagesize($file);
$width = $width/3;
$height = $height/3;
echo "<img src=\"http://localhost/$file\" width=\"$width\" height=\"$height\" alt=\"getimagesize() example\" />";
echo "<br />$file => width=$width - height=$height - type=$type - attr=$attr<br /><br />";
?>
注 - ImageMagick は JPEG ファイルの解像度を 300 DPI に正しく設定しますが、一部のプログラムはそれに気付かない場合があります。
そうしないと
「imagick」PECL 拡張機能を使用する
http://pecl.php.net/package/imagick
http://php.net/manual/en/book.imagick.php
ソースと宛先 (ファイル? URL? http 応答?) に応じて、次のようにします。
$image = new Imagick('something.tiff');
$image->setImageFormat('png');
echo $image;
また
$image->writeImage('something.png');