时间:2021-07-01 10:21:17 帮助过:20人阅读
/*
Created by http://www.cnphp.info
*/
// 文件及缩放尺寸
//$imgfile = 'smp.jpg';
//$percent = 0.2;
header('Content-type: image/jpeg');
list($width, $height) = getimagesize($imgfile);
$newwidth = $width * $percent;
$newheight = $height * $percent;
$thumb = ImageCreateTrueColor($newwidth,$newheight);
$source = imagecreatefromjpeg($imgfile);
imagecopyresized($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
imagejpeg($thumb);
?>
http://www.bkjia.com/PHPjc/323653.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/323653.htmlTechArticlearray getimagesize ( string $filename [, array lt;?php /* Created by A href="http://www.cnphp.info"http://www.cnphp.info/A */ // 文件及缩放尺寸 //$imgfile = 'smp.jpg'; //$per...