手机
当前位置:查字典教程网 >编程开发 >php教程 >php生成图片缩略图的方法
php生成图片缩略图的方法
摘要:本文实例讲述了php生成图片缩略图的方法。分享给大家供大家参考。具体如下:这里需要用到GD2libraryfunctionmake_thum...

本文实例讲述了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程序设计有所帮助。

【php生成图片缩略图的方法】相关文章:

php比较相似字符串的方法

PHP批量生成图片缩略图的方法

php给一组指定关键词添加span标签的方法

php操作redis缓存方法分享

php生成圆角图片的方法

php 字母大小写转换的方法

php猴子选大王问题解决方法

php实现修改新闻时删除图片的方法

PHP生成指定随机字符串的简单实现方法

php实现按指定大小等比缩放生成上传图片缩略图的方法

精品推荐
分类导航