php生成图片缩略图的方法_PHP
程序员文章站
2022-04-27 12:09:40
...
本文实例讲述了php生成图片缩略图的方法。分享给大家供大家参考。具体如下:
这里需要用到GD2 library
function make_thumb($src,$dest,$desired_width) { /* read the source image */ $source_image = imagecreatefromjpeg($src); $width = imagesx($source_image); $height = imagesy($source_image); /* find the "desired height" of this thumbnail, relative to the desired width */ $desired_height = floor($height*($desired_width/$width)); /* create a new, "virtual" image */ $virtual_image = imagecreatetruecolor($desired_width,$desired_height); /* copy source image at a resized size */ imagecopyresized($virtual_image,$source_image,0,0,0,0,$desired_width,$desired_height,$width,$height); /* create the physical thumbnail image to its destination */ imagejpeg($virtual_image,$dest, 83); }
希望本文所述对大家的php程序设计有所帮助。
上一篇: IWinter一个路由转控制器的Nodejs库详解
下一篇: 如何使用ps软件
推荐阅读
-
经验分享:PHP入门的学习方法
-
PHP加密3DES报错 Call to undefined function: mcrypt_module_open() 的解决方法,mcryptmoduleopen
-
php+mysql数据库实现无限分类的方法,mysql数据库
-
使用PHP生成XML文件的四种方法
-
方便实用的PHP生成静态页面类非smarty第1/2页
-
PHP获取一年中每个星期的开始和结束日期的方法_PHP教程
-
使用GD库生成带阴影文字的图片,gd阴影_PHP教程
-
php循环table实现一行两列显示的方法_PHP
-
php多个字符串替换成同一个的解决方法
-
随时给自己贴的图片加文字的php水印_php技巧