PHP大图生成缩略图(0 位领导批示)
- 2010-09-1
- 分类:PHP&MySql
- 作者:银子
- 1,843 位领导视察
原贴地址: http://bbs.blueidea.com/thread-2997569-1-1.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | <?php /** * 生成缩略图 * * @param string $imagePath 图片路径 * @param string $thumb 生成缩略图名称 * @param integer $width 生成缩略图最大宽度 * @param integer $height 生成缩略图最大高度 * * @author Silver * @link http://www.zdyi.com */ function resizeImage($imagePath, $thumb, $width = 200, $height = 200) { list($imageWidth, $imageHeight) = getimagesize($imagePath); $imagePath = imagecreatefromjpeg($imagePath); if ($width && ($imageWidth < $imageHeight)) { $width = ($height / $imageHeight) * $imageWidth; } else { $height = ($width / $imageWidth) * $imageHeight; } $image = imagecreatetruecolor($width, $height); imagecopyresampled($image, $imagePath, 0, 0, 0, 0, $width, $height, $imageWidth, $imageHeight); imagepng($image, $thumb); imagedestroy($image); } resizeImage('test.jpg', 'test_thumb.jpg'); ?> |
相关文章
NOTE:本博内容大部分为原创,转载请注明出处。
永久链接:http://www.zdyi.com/php-thumb/553


























银子曰:还没有领导题词?
请领导指示
Additional comments powered by BackType