array getimagesize ( string $filename [, array &$imageinfo ] ) 画像サイズを取得します
resource imagecreatetruecolor ( int $x_size , int $y_size ) 新しい True Color イメージを作成します
resource imagecreatefromjpeg ( string $filename ) JPEG ファイルまたは URL 新しい画像を作成します
bool imagecopyresize ( resource $dst_image , resource $src_image , int $dst_x , int $dst_y , int $src_x , int $src_y , int $dst_w , int $dst_h , int $src_w , int $src_h ) 画像の一部をコピーし、サイズを変更します
bool imagejpeg ( resource $image [, string $filename [, int $quality ]] ) 画像を JPEG 形式でブラウザまたはファイルに出力します
コードをコピー コードは次のとおりです:
/*
作成者 http://www.cnphp.info
*/
// ファイルとズームのサイズ
//$imgfile = 'smp.jpg ';
//$ パーセント = 0.2;
header('Content-type: image/jpeg') = getimagesize($imgfile); newwidth = $width * $percent;
$newheight = $height * $percent;
$source = imagecreatefromjpeg($imgfile); imagecopyresize($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
imagejpeg($thumb)>?
;