PHP缩略图等比例无损压缩,可填充空白区域补充色


Posted in PHP onJune 10, 2011
<?php 
error_reporting( E_ALL ); 
// 测试 
imagezoom('1.jpg', '2.jpg', 400, 300, '#FFFFFF'); 
/* 
php缩略图函数: 
等比例无损压缩,可填充补充色 author: 华仔 
主持格式: 
bmp 、jpg 、gif、png 
param: 
@srcimage : 要缩小的图片 
@dstimage : 要保存的图片 
@dst_width: 缩小宽 
@dst_height: 缩小高 
@backgroundcolor: 补充色 如:#FFFFFF 支持 6位 不支持3位 
*/ 
function imagezoom( $srcimage, $dstimage, $dst_width, $dst_height, $backgroundcolor ) { 
// 中文件名乱码 
if ( PHP_OS == 'WINNT' ) { 
$srcimage = iconv('UTF-8', 'GBK', $srcimage); 
$dstimage = iconv('UTF-8', 'GBK', $dstimage); 
} 
$dstimg = imagecreatetruecolor( $dst_width, $dst_height ); 
$color = imagecolorallocate($dstimg 
, hexdec(substr($backgroundcolor, 1, 2)) 
, hexdec(substr($backgroundcolor, 3, 2)) 
, hexdec(substr($backgroundcolor, 5, 2)) 
); 
imagefill($dstimg, 0, 0, $color); 
if ( !$arr=getimagesize($srcimage) ) { 
echo "要生成缩略图的文件不存在"; 
exit; 
} 
$src_width = $arr[0]; 
$src_height = $arr[1]; 
$srcimg = null; 
$method = getcreatemethod( $srcimage ); 
if ( $method ) { 
eval( '$srcimg = ' . $method . ';' ); 
} 
$dst_x = 0; 
$dst_y = 0; 
$dst_w = $dst_width; 
$dst_h = $dst_height; 
if ( ($dst_width / $dst_height - $src_width / $src_height) > 0 ) { 
$dst_w = $src_width * ( $dst_height / $src_height ); 
$dst_x = ( $dst_width - $dst_w ) / 2; 
} elseif ( ($dst_width / $dst_height - $src_width / $src_height) < 0 ) { 
$dst_h = $src_height * ( $dst_width / $src_width ); 
$dst_y = ( $dst_height - $dst_h ) / 2; 
} 
imagecopyresampled($dstimg, $srcimg, $dst_x 
, $dst_y, 0, 0, $dst_w, $dst_h, $src_width, $src_height); 
// 保存格式 
$arr = array( 
'jpg' => 'imagejpeg' 
, 'jpeg' => 'imagejpeg' 
, 'png' => 'imagepng' 
, 'gif' => 'imagegif' 
, 'bmp' => 'imagebmp' 
); 
$suffix = strtolower( array_pop(explode('.', $dstimage ) ) ); 
if (!in_array($suffix, array_keys($arr)) ) { 
echo "保存的文件名错误"; 
exit; 
} else { 
eval( $arr[$suffix] . '($dstimg, "'.$dstimage.'");' ); 
} 
imagejpeg($dstimg, $dstimage); 
imagedestroy($dstimg); 
imagedestroy($srcimg); 
} 
function getcreatemethod( $file ) { 
$arr = array( 
'474946' => "imagecreatefromgif('$file')" 
, 'FFD8FF' => "imagecreatefromjpeg('$file')" 
, '424D' => "imagecreatefrombmp('$file')" 
, '89504E' => "imagecreatefrompng('$file')" 
); 
$fd = fopen( $file, "rb" ); 
$data = fread( $fd, 3 ); 
$data = str2hex( $data ); 
if ( array_key_exists( $data, $arr ) ) { 
return $arr[$data]; 
} elseif ( array_key_exists( substr($data, 0, 4), $arr ) ) { 
return $arr[substr($data, 0, 4)]; 
} else { 
return false; 
} 
} 
function str2hex( $str ) { 
$ret = ""; 
for( $i = 0; $i < strlen( $str ) ; $i++ ) { 
$ret .= ord($str[$i]) >= 16 ? strval( dechex( ord($str[$i]) ) ) 
: '0'. strval( dechex( ord($str[$i]) ) ); 
} 
return strtoupper( $ret ); 
} 
// BMP 创建函数 php本身无 
function imagecreatefrombmp($filename) 
{ 
if (! $f1 = fopen($filename,"rb")) return FALSE; 
$FILE = unpack("vfile_type/Vfile_size/Vreserved/Vbitmap_offset", fread($f1,14)); 
if ($FILE['file_type'] != 19778) return FALSE; 
$BMP = unpack('Vheader_size/Vwidth/Vheight/vplanes/vbits_per_pixel'. 
'/Vcompression/Vsize_bitmap/Vhoriz_resolution'. 
'/Vvert_resolution/Vcolors_used/Vcolors_important', fread($f1,40)); 
$BMP['colors'] = pow(2,$BMP['bits_per_pixel']); 
if ($BMP['size_bitmap'] == 0) $BMP['size_bitmap'] = $FILE['file_size'] - $FILE['bitmap_offset']; 
$BMP['bytes_per_pixel'] = $BMP['bits_per_pixel']/8; 
$BMP['bytes_per_pixel2'] = ceil($BMP['bytes_per_pixel']); 
$BMP['decal'] = ($BMP['width']*$BMP['bytes_per_pixel']/4); 
$BMP['decal'] -= floor($BMP['width']*$BMP['bytes_per_pixel']/4); 
$BMP['decal'] = 4-(4*$BMP['decal']); 
if ($BMP['decal'] == 4) $BMP['decal'] = 0; 
$PALETTE = array(); 
if ($BMP['colors'] < 16777216) 
{ 
$PALETTE = unpack('V'.$BMP['colors'], fread($f1,$BMP['colors']*4)); 
} 
$IMG = fread($f1,$BMP['size_bitmap']); 
$VIDE = chr(0); 
$res = imagecreatetruecolor($BMP['width'],$BMP['height']); 
$P = 0; 
$Y = $BMP['height']-1; 
while ($Y >= 0) 
{ 
$X=0; 
while ($X < $BMP['width']) 
{ 
if ($BMP['bits_per_pixel'] == 24) 
$COLOR = unpack("V",substr($IMG,$P,3).$VIDE); 
elseif ($BMP['bits_per_pixel'] == 16) 
{ 
$COLOR = unpack("n",substr($IMG,$P,2)); 
$COLOR[1] = $PALETTE[$COLOR[1]+1]; 
} 
elseif ($BMP['bits_per_pixel'] == 8) 
{ 
$COLOR = unpack("n",$VIDE.substr($IMG,$P,1)); 
$COLOR[1] = $PALETTE[$COLOR[1]+1]; 
} 
elseif ($BMP['bits_per_pixel'] == 4) 
{ 
$COLOR = unpack("n",$VIDE.substr($IMG,floor($P),1)); 
if (($P*2)%2 == 0) $COLOR[1] = ($COLOR[1] >> 4) ; else $COLOR[1] = ($COLOR[1] & 0x0F); 
$COLOR[1] = $PALETTE[$COLOR[1]+1]; 
} 
elseif ($BMP['bits_per_pixel'] == 1) 
{ 
$COLOR = unpack("n",$VIDE.substr($IMG,floor($P),1)); 
if (($P*8)%8 == 0) $COLOR[1] = $COLOR[1] >>7; 
elseif (($P*8)%8 == 1) $COLOR[1] = ($COLOR[1] & 0x40)>>6; 
elseif (($P*8)%8 == 2) $COLOR[1] = ($COLOR[1] & 0x20)>>5; 
elseif (($P*8)%8 == 3) $COLOR[1] = ($COLOR[1] & 0x10)>>4; 
elseif (($P*8)%8 == 4) $COLOR[1] = ($COLOR[1] & 0x8)>>3; 
elseif (($P*8)%8 == 5) $COLOR[1] = ($COLOR[1] & 0x4)>>2; 
elseif (($P*8)%8 == 6) $COLOR[1] = ($COLOR[1] & 0x2)>>1; 
elseif (($P*8)%8 == 7) $COLOR[1] = ($COLOR[1] & 0x1); 
$COLOR[1] = $PALETTE[$COLOR[1]+1]; 
} 
else 
return FALSE; 
imagesetpixel($res,$X,$Y,$COLOR[1]); 
$X++; 
$P += $BMP['bytes_per_pixel']; 
} 
$Y--; 
$P+=$BMP['decal']; 
} 
fclose($f1); 
return $res; 
} 
// BMP 保存函数,php本身无 
function imagebmp ($im, $fn = false) 
{ 
if (!$im) return false; 
if ($fn === false) $fn = 'php://output'; 
$f = fopen ($fn, "w"); 
if (!$f) return false; 
$biWidth = imagesx ($im); 
$biHeight = imagesy ($im); 
$biBPLine = $biWidth * 3; 
$biStride = ($biBPLine + 3) & ~3; 
$biSizeImage = $biStride * $biHeight; 
$bfOffBits = 54; 
$bfSize = $bfOffBits + $biSizeImage; 
fwrite ($f, 'BM', 2); 
fwrite ($f, pack ('VvvV', $bfSize, 0, 0, $bfOffBits)); 
fwrite ($f, pack ('VVVvvVVVVVV', 40, $biWidth, $biHeight, 1, 24, 0, $biSizeImage, 0, 0, 0, 0)); 
$numpad = $biStride - $biBPLine; 
for ($y = $biHeight - 1; $y >= 0; --$y) 
{ 
for ($x = 0; $x < $biWidth; ++$x) 
{ 
$col = imagecolorat ($im, $x, $y); 
fwrite ($f, pack ('V', $col), 3); 
} 
for ($i = 0; $i < $numpad; ++$i) 
fwrite ($f, pack ('C', 0)); 
} 
fclose ($f); 
return true; 
} 
?>
PHP 相关文章推荐
PHP开发文件系统实例讲解
Oct 09 PHP
用PHP提取中英文词语以及数字的首字母的方法介绍
Apr 23 PHP
如何判断php数组的维度
Jun 10 PHP
php几个预定义变量$_SERVER用法小结
Nov 07 PHP
php下Memcached入门实例解析
Jan 05 PHP
PHP实现获取某个月份周次信息的方法
Aug 11 PHP
PHP7.1方括号数组符号多值复制及指定键值赋值用法分析
Sep 26 PHP
php提交表单时保留多个空格及换行的文本样式的方法
Jun 20 PHP
PHP自动识别当前使用移动终端
May 21 PHP
php微信开发之图片回复功能
Jun 14 PHP
yii框架结合charjs统计上一年与当前年数据的方法示例
Apr 04 PHP
PHP执行系统命令函数实例讲解
Mar 03 PHP
PHP网站备份程序代码分享
Jun 10 #PHP
php在页面中调用fckeditor编辑器的方法
Jun 10 #PHP
PHP中遍历stdclass object的实现代码
Jun 09 #PHP
IIS7.X配置PHP运行环境小结
Jun 09 #PHP
php基础学习之变量的使用
Jun 09 #PHP
php学习之数据类型之间的转换介绍
Jun 09 #PHP
php学习之运算符相关概念
Jun 09 #PHP
You might like
CodeIgniter上传图片成功的全部过程分享
2013/08/12 PHP
php 获取页面中指定内容的实现类
2014/01/23 PHP
PHP基于mssql扩展远程连接MSSQL的简单实现方法
2016/10/08 PHP
PHP异常处理定义与使用方法分析
2017/07/25 PHP
PHP判断函数是否被定义的方法
2019/06/21 PHP
详解强大的jQuery选择器之基本选择器、层次选择器
2012/02/07 Javascript
利用js实现遮罩以及弹出可移动登录窗口
2013/07/08 Javascript
Window.Open如何在同一个标签页打开
2014/06/20 Javascript
整理AngularJS框架使用过程当中的一些性能优化要点
2016/03/05 Javascript
JavaScript核心语法总结(推荐)
2016/06/02 Javascript
jquery实现input框获取焦点的简单实例
2017/01/26 Javascript
Easyui Tree获取当前选择节点的所有顶级父节点
2017/02/14 Javascript
浅谈Vue.js应用的四种AJAX请求数据模式
2017/08/30 Javascript
vue-music 使用better-scroll遇到轮播图不能自动轮播问题
2018/12/03 Javascript
JSON是什么?有哪些优点?JSON和XML的区别?
2019/04/29 Javascript
ES6 Object属性新的写法实例小结
2019/06/25 Javascript
在Python下使用Txt2Html实现网页过滤代理的教程
2015/04/11 Python
Django中使用group_by的方法
2015/05/26 Python
利用python实现数据分析
2017/01/11 Python
Python 字符串操作(string替换、删除、截取、复制、连接、比较、查找、包含、大小写转换、分割等)
2018/03/19 Python
详解Python3的TFTP文件传输
2018/06/26 Python
Django中使用第三方登录的示例代码
2018/08/20 Python
对Pandas MultiIndex(多重索引)详解
2018/11/16 Python
TensorBoard 计算图的查看方式
2020/02/15 Python
tensorflow之读取jpg图像长和宽实例
2020/06/18 Python
Python使用for生成列表实现过程解析
2020/09/22 Python
python获取时间戳的实现示例(10位和13位)
2020/09/23 Python
Django xadmin安装及使用详解
2020/10/26 Python
美国浴缸、水槽和水龙头购物网站:Vintage Tub & Bath
2019/11/05 全球购物
Cocopanda波兰:购买化妆品、护肤品、护发和香水
2020/05/25 全球购物
2014年学生会个人工作总结
2014/11/07 职场文书
涉外离婚协议书怎么写
2014/11/20 职场文书
2016年元旦主持词
2015/07/06 职场文书
css position fixed 左右双定位的实现代码
2021/04/29 HTML / CSS
教你使用VS Code的MySQL扩展管理数据库的方法
2022/01/22 MySQL
使用SQL实现车流量的计算的示例代码
2022/02/28 SQL Server