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'
//$percent = 0.2;
list($width, $height); getimagesize($imgfile);
$newwidth = $height * $percent;
$source = imagecreatefromjpeg($imgfile); imagecopyresize($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
imagejpeg($thumb)?>
http://www.bkjia.com/PHPjc/323653.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/323653.html技術記事 array getimagesize ( string $filename [, array lt;?php /* Created by A href="http://www.cnphp.info"http://www.cnphp.info/A */ // ファイルとズームのサイズ//$imgfile = 'smp.jpg' //$per...;