php生成图片缩略图的方法


Posted in PHP onApril 07, 2015

本文实例讲述了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 简单日历实现代码
Oct 28 PHP
php 中的4种标记风格介绍
May 10 PHP
浅析PHP原理之变量分离/引用(Variables Separation)
Aug 09 PHP
php时区转换转换函数
Jan 07 PHP
php二分查找二种实现示例
Mar 12 PHP
php使用类继承解决代码重复的问题
Feb 11 PHP
Linux系统下PHP-FPM的安装和配置教程
Aug 17 PHP
PHP使用strstr()函数获取指定字符串后所有字符的方法
Jan 07 PHP
thinkPHP简单实现多个子查询语句的方法
Dec 05 PHP
Zend Framework路由器用法实例详解
Dec 11 PHP
yii2实现Ueditor百度编辑器的示例代码
Nov 02 PHP
Laravel框架中缓存的使用方法分析
Sep 06 PHP
Nginx下配置codeigniter框架方法
Apr 07 #PHP
Windows下Apache + PHP SESSION丢失的解决过程全纪录
Apr 07 #PHP
php修改文件上传限制方法汇总
Apr 07 #PHP
windows下安装php的memcache模块的方法
Apr 07 #PHP
CodeIgniter删除和设置Cookie的方法
Apr 07 #PHP
php获取网页里所有图片并存入数组的方法
Apr 06 #PHP
经典PHP加密解密函数Authcode()修复版代码
Apr 05 #PHP
You might like
全国FM电台频率大全 - 21 海南省
2020/03/11 无线电
用PHP实现ODBC数据分页显示一例
2006/10/09 PHP
php简单的留言板与回复功能具体实现
2014/02/19 PHP
优化WordPress的Google字体以加速国内服务器上的运行
2015/11/24 PHP
WordPress中的shortcode短代码功能使用详解
2016/05/17 PHP
CentOS系统中PHP安装扩展的方式汇总
2017/04/09 PHP
Laravel 队列使用的实现
2019/01/08 PHP
js focus不起作用的解决方法(主要是因为dom元素是否加载完成)
2010/11/05 Javascript
ASP.NET jQuery 实例15 通过控件CustomValidator验证CheckBoxList
2012/02/03 Javascript
jQuery之end()和pushStack()使用介绍
2012/02/07 Javascript
JS链式调用的实现方法
2013/03/07 Javascript
js的window.showModalDialog及window.open用法实例分析
2015/01/29 Javascript
js鼠标滑过图片震动特效的方法
2015/02/17 Javascript
浅谈document.write()输出样式
2015/05/07 Javascript
介绍一个简单的JavaScript类框架
2015/06/24 Javascript
JS 获取HTML标签内的子节点的方法
2016/09/21 Javascript
jQuery实现最简单实用的分秒倒计时
2017/02/05 Javascript
angularjs实现下拉列表的选中事件示例
2017/03/03 Javascript
vue.js指令v-model使用方法
2017/03/20 Javascript
微信小程序开发之选项卡(窗口底部TabBar)页面切换
2017/04/12 Javascript
LayerClose弹窗关闭刷新方法
2018/08/17 Javascript
JavaScript实现网页留言板功能
2020/11/23 Javascript
uni-app 自定义底部导航栏的实现
2020/12/11 Javascript
Python使用自带的ConfigParser模块读写ini配置文件
2016/06/26 Python
Python使用pymysql从MySQL数据库中读出数据的方法
2018/07/25 Python
对python字典过滤条件的实例详解
2019/01/22 Python
在matplotlib中改变figure的布局和大小实例
2020/04/23 Python
基于Pyinstaller打包Python程序并压缩文件大小
2020/05/28 Python
国外平面设计第一市场:99designs
2016/10/25 全球购物
英国领先的男士服装和时尚零售商:Burton
2017/01/09 全球购物
历史学专业大学生找工作的自我评价
2013/10/16 职场文书
简短大学毕业感言
2014/01/18 职场文书
中学生国旗下讲话稿
2014/04/26 职场文书
考核评语大全
2014/04/29 职场文书
村干部群众路线教育活动对照检查材料
2014/10/01 职场文书
学会感恩主题班会
2015/08/12 职场文书