PHP实现原比例生成缩略图的方法

前端之家收集整理的这篇文章主要介绍了PHP实现原比例生成缩略图的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了PHP实现原比例生成缩略图方法分享给大家供大家参考,具体如下:

PHP;"> $y){ //图片宽大于高 $sx = abs(($y-$x)/2); $sy = 0; $thumbw = $y; $thumbh = $y; } else { //图片高大于等于宽 $sy = abs(($x-$y)/2.5); $sx = 0; $thumbw = $x; $thumbh = $x; } if(function_exists("imagecreatetruecolor")) { $dim = imagecreatetruecolor($yy,$xx); // 创建目标图gd2 } else { $dim = imagecreate($yy,$xx); // 创建目标图gd1 } imageCopyreSampled ($dim,$im,$sx,$sy,$yy,$xx,$thumbw,$thumbh); header ("Content-type: image/jpeg"); imagejpeg ($dim,false,100); ?>

更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》及《PHP常用函数与技巧总结》

希望本文所述对大家PHP程序设计有所帮助。

原文链接:https://www.f2er.com/php/20418.html

猜你在找的PHP相关文章