编程10000问 2019-03-27
代码如下:
<?php /* Created by <A href="http://www.cnphp.info">http://www.cnphp.info</A> */ // 文件及缩放尺寸 //$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); ?>