php使用GD创建保持宽高比缩略图的方法


Posted in PHP onApril 17, 2015

本文实例讲述了php使用GD创建保持宽高比缩略图的方法。分享给大家供大家参考。具体如下:

/**
* Create a thumbnail image from $inputFileName no taller or wider than
* $maxSize. Returns the new image resource or false on error.
* Author: mthorn.net
*/
function thumbnail($inputFileName, $maxSize = 100)
{
 $info = getimagesize($inputFileName);
  $type = isset($info['type']) ? $info['type'] : $info[2];
  // Check support of file type
 if ( !(imagetypes() & $type) )
 {
   // Server does not support file type
   return false;
 }
  $width = isset($info['width']) ? $info['width'] : $info[0];
 $height = isset($info['height']) ? $info['height'] : $info[1];
  // Calculate aspect ratio
 $wRatio = $maxSize / $width;
 $hRatio = $maxSize / $height;
  // Using imagecreatefromstring will automatically detect the file type
 $sourceImage = imagecreatefromstring(file_get_contents($inputFileName));
  // Calculate a proportional width and height no larger than the max size.
 if ( ($width <= $maxSize) && ($height <= $maxSize) )
 {
   // Input is smaller than thumbnail, do nothing
   return $sourceImage;
 }
 elseif ( ($wRatio * $height) < $maxSize )
 {
   // Image is horizontal
   $tHeight = ceil($wRatio * $height);
   $tWidth = $maxSize;
 }
 else
 {
   // Image is vertical
   $tWidth = ceil($hRatio * $width);
   $tHeight = $maxSize;
 }
  $thumb = imagecreatetruecolor($tWidth, $tHeight);
  if ( $sourceImage === false )
 {
   // Could not load image
   return false;
 }
  // Copy resampled makes a smooth thumbnail
 imagecopyresampled($thumb,$sourceImage,0,0,0,0,$tWidth,$tHeight,$width,$height);
 imagedestroy($sourceImage);
  return $thumb;
}
 /**
* Save the image to a file. Type is determined from the extension.
* $quality is only used for jpegs.
* Author: mthorn.net
*/
function imageToFile($im, $fileName, $quality = 80)
{
 if ( !$im || file_exists($fileName) )
 {
   return false;
 }
  $ext = strtolower(substr($fileName, strrpos($fileName, '.')));
  switch ( $ext )
 {
  case '.gif':
  imagegif($im, $fileName);
  break;
  case '.jpg':
  case '.jpeg':
  imagejpeg($im, $fileName, $quality);
  break;
  case '.png':
  imagepng($im, $fileName);
  break;
  case '.bmp':
  imagewbmp($im, $fileName);
  break;
  default:
  return false;
 }
  return true;
}
$im = thumbnail('temp.jpg', 100);
imageToFile($im, 'temp-thumbnail.jpg');

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

PHP 相关文章推荐
帖几个PHP的无限分类实现想法~
Jan 02 PHP
PHP 解决utf-8和gb2312编码转换问题
Mar 18 PHP
php 上传文件类型判断函数(避免上传漏洞 )
Jun 08 PHP
php购物网站支付paypal使用方法
Nov 28 PHP
Smarty中的注释和截断功能介绍
Apr 09 PHP
Smarty模板变量调节器用法分析
May 23 PHP
php封装的page分页类完整实例
Oct 18 PHP
PHP如何读取由JavaScript设置的Cookie
Mar 22 PHP
PHP实现的mysql主从数据库状态检测功能示例
Jul 20 PHP
php源码的安装方法和实例
Sep 26 PHP
thinkphp5框架前后端分离项目实现分页功能的方法分析
Oct 08 PHP
php生成短网址/短链接原理和用法实例分析
May 29 PHP
PHP中preg_match正则匹配中的/u、/i、/s含义
Apr 17 #PHP
php和editplus正则表达式去除空白行
Apr 17 #PHP
PHP生成唯一订单号的方法汇总
Apr 16 #PHP
微信access_token的获取开发示例
Apr 16 #PHP
微信自定义菜单的处理开发示例
Apr 16 #PHP
php简单操作mysql数据库的类
Apr 16 #PHP
PHP扩展程序实现守护进程
Apr 16 #PHP
You might like
substr()函数中文版
2006/10/09 PHP
PHP取整数函数常用的四种方法小结
2012/07/05 PHP
PHP中把stdClass Object转array的几个方法
2014/05/08 PHP
实现PHP中session存储及删除变量
2018/10/15 PHP
浅析javascript闭包 实例分析
2010/12/25 Javascript
基于jQuery的模仿新浪微博时间的组件
2011/10/04 Javascript
Js注册协议倒计时的小例子
2013/06/24 Javascript
jQuery获取当前对象标签名称的方法
2014/02/07 Javascript
用jquery修复在iframe下的页面锚点失效问题
2014/08/22 Javascript
JS使用ajax从xml文件动态获取数据显示的方法
2015/03/24 Javascript
JavaScript使用shift方法移除素组第一个元素实例分析
2015/04/06 Javascript
js实现缓冲运动效果的方法
2015/04/10 Javascript
完善的jquery处理机制
2016/02/21 Javascript
js原生跨域_用script标签的简单实现
2016/09/24 Javascript
jQuery EasyUI中的日期控件DateBox修改方法
2016/11/09 Javascript
微信小程序 按钮滑动的实现方法
2017/09/27 Javascript
深入掌握 react的 setState的工作机制
2017/09/27 Javascript
微信小程序组件之srcoll-view的详解
2017/10/19 Javascript
详解webpack的proxyTable无效的解决方案
2018/06/15 Javascript
Vue中使用vux配置代码详解
2018/09/16 Javascript
利用Angular2的Observables实现交互控制的方法
2018/12/27 Javascript
JS实现放烟花效果
2020/03/10 Javascript
[49:56]VG vs Optic 2018国际邀请赛小组赛BO2 第一场 8.19
2018/08/21 DOTA
Mac OS X10.9安装的Python2.7升级Python3.3步骤详解
2013/12/04 Python
搞笑的程序猿:看看你是哪种Python程序员
2015/06/12 Python
Django框架中的对象列表视图使用示例
2015/07/21 Python
python3.5 tkinter实现页面跳转
2018/01/30 Python
python+POP3实现批量下载邮件附件
2018/06/19 Python
python tkinter实现屏保程序
2019/07/30 Python
python基于TCP实现的文件下载器功能案例
2019/12/10 Python
Python qrcode 生成一个二维码的实例详解
2020/02/12 Python
HTML5 device access 设备访问详解
2018/05/24 HTML / CSS
小学综合实践活动总结
2014/07/07 职场文书
“学党章、守党纪、讲党规”学习心得体会
2016/01/14 职场文书
工作报告范文
2019/06/20 职场文书
2019年思想汇报
2019/06/20 职场文书