サムネイルの生成
$tx=GetImageSize($sample);
if($tx[0]<=$tx[1] and $tx[1]>=120){
$height=120;
$width=intval($height*$tx[0]/$tx[1]);
}
if($tx[0]>=$tx[1] and $tx[0]> ;=100){
$width=100;
$height=intval($width*$tx[1]/$tx[0]);
}
if($tx[0] ] $width=$tx[0];
$height=$tx[1];
}
makethumb2 ($sample,$target,$width,$height);
// $srcFile: ソース ファイル
// $dstFile: ターゲット ファイル
// $dstW: ターゲット画像の幅
// $dstH: ターゲットファイルの高さ
function makethumb2($srcFile,$dstFile,$dstW,$dstH){
$data=GetImageSize($srcFile,&$info);
switch($ data [2]){
case 1:
$ im =@imagecreatefromgif($ srcfile);
>ケース2:
🎜> Imagesy($ im);
$ni=ImageCreate($dstW,$dstH);
ImageJpeg($ni,$dstFile); ‐ ‐ ‐ ‐ ‐ ‐ ‐最後の文を変更するだけです
}