-
php 等比例缩小图片
本文章收藏了四款关于利用php等比例缩小图片代码函数,我们可定义图片宽度或高度对图片缩小或放大的图片宽度,好了看看四款实例那一款适合于你吧.
php 等比例缩小图片实例代码如下:
- function imageresize2($width, $height, $targetw, $targeth)
- {
- $percentage = 1;
- if (($width > $targetw) || ($height > $targeth))
- {
- $width_diff = $width - $targetw;
- $height_diff = $height - $targeth;
- if ($width_diff >= $height_diff)
- {
- $percentage = ($targetw / $width);
- }
- else
- {
- $percentage = ($targeth / $height);
- }
- }
- //gets the new value and applies the percentage, then rounds the value
- $width = round($width * $percentage);
- $height = round($height * $percentage);
- $resize[0] = $width;
- $resize[1] = $height;
- return $resize;
- }
- //方法二
- if (!$max_width)
- $max_width = 240;
- if (!$max_height)
- $max_height = 200;
- $size = getimagesize($image);
- $width = $size[0];
- $height = $size[1];
- $x_ratio = $max_width / $width;
- $y_ratio = $max_height / $height;
- if ( ($width <= $max_width) && ($height <= $max_height) ) {
- $tn_width = $width;
- $tn_height = $height;
- }
- else if (($x_ratio * $height) < $max_height) {
- $tn_height = ceil($x_ratio * $height);
- $tn_width = $max_width;
- }
- else {
- $tn_width = ceil($y_ratio * $width);
- $tn_height = $max_height;
- }
- $src = imagecreatefrompng($image);
- $dst = imagecreate($tn_width,$tn_height);
- imagecopyresized($dst, $src, 0, 0, 0, 0,
- $tn_width,$tn_height,$width,$height);
- header("content-type: image/png");
- imagepng($dst, null, -1);
- imagedestroy($src);
- imagedestroy($dst);
- //方法三
- /*
- 函数原型如下:
- 参数说明:
- $oldwidth:原图片宽度
- $oldheight:原图片高度
- $imgwidth:缩小或放大的图片宽度
- $imgheight:缩小或放大的图片高度
- 返回:wwww.phpfensi.com
- 数组:arraysize ,其中索引为:width 和height 即:arraysize['width']、arraysize['height']
- */
- function getimgsize($oldwidth,$oldheight,$imgwidth,$imgheight)
- {
- //$oldwidth设置的宽度,$oldheight设置的高度,$imgwidth图片的宽度,$imgheight图片的高度;
- //单元格装得能装得进图片,则按图片的真实大小显示;
- if($imgwidth<=$oldwidth&&$imgheight<=$oldheight)
- {
- $arraysize=array('width'=>$imgwidth,'height'=>$imgheight);
- return $arraysize;
- }
- else
- {
- $suoxiaowidth=$imgwidth-$oldwidth;
- $suoxiaoheight=$imgheight-$oldheight;
- $suoxiaoheightper=$suoxiaoheight/$imgheight;
- $suoxiaowidthper=$suoxiaowidth/$imgwidth;
- if($suoxiaoheightper>=$suoxiaowidthper)
- {
- //单元格高度为准;
- $aftersuoxiaowidth=$imgwidth*(1-$suoxiaoheightper);
- $arraysize=array('width'=>$aftersuoxiaowidth,'height'=>$oldheight);
- return $arraysize;
- }
- else
- {
- //单元格宽度为准;
- $aftersuoxiaoheight=$imgheight*(1-$suoxiaowidthper);
- $arraysize=array('width'=>$oldwidth,'height'=>$aftersuoxiaoheight);
- return $arraysize;
- }
- }
- }
原文链接:http://www.phpfensi.com/php/20140819/4474.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式