首页 > php教程 > PHP源码 > 正文

生成图像缩略图(支持:JPEG,GIT,PNG,BMP)

PHP中文网
发布: 2016-05-25 17:10:17
原创
1174人浏览过

<?php
class Thumb
{

 public function create($srcPath, $dstPath, $dstWidth, $dstHeight)
{
 if (!file_exists($srcPath)) {
 return false;
}

 @$srcSize = getimagesize($srcPath);
 if (empty($srcSize)) {
 return false;
}

 $srcWith = intval($srcSize[0]);
 $srcHeight = intval($srcSize[1]);

//如果原始图片的尺寸大于指定缩略图的尺寸,则生成缩略图,否则拷贝原始文件
 if ($srcWith <= $dstWidth && $srcHeight <= $dstHeight) {
 return copy($srcPath, $dstPath);
}

//读取原始图片资源
 @$srcImage = imagecreatefromjpeg($srcPath);
 if (empty($srcImage)) {
 @$srcImage = imagecreatefromgif($srcPath);
}
 if (empty($srcImage)) {
 @$srcImage = imagecreatefrompng($srcPath);
}
 if (empty($srcImage)) {
 @$srcImage = $this->_imageCreateFromBMP($srcPath);
}

 if (empty($srcImage)) {
 return false;
}

//获取缩略图的尺寸,并据此生成新的图像
 $dstSize = $this->_getDstSize(
 $srcWith, $srcHeight, $dstWidth, $dstHeight
);

 @$dstImage = imagecreatetruecolor(
 $dstSize['width'], $dstSize['height']
);

@imagecopyresampled(
 $dstImage, $srcImage , 0, 0, 0, 0,
 $dstSize['width'], $dstSize['height'],
 $srcWith, $srcHeight
);

 return @imagepng($srcPath, $dstPath);
}

 private function _imageCreateFromBMP($filePath)
{
 $fileHandle = fopen($filePath, 'rb');
 if (empty($fileHandle)) {
 return false;
}

 $file = unpack(
'vfile_type/Vfile_size/Vreserved/Vbitmap_offset',
 fread($fileHandle, 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($fileHandle, 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($fileHandle, $bmp['colors'] * 4)
);
}
 $image = fread($fileHandle, $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($image, $p, 3) . $vide);
 } else if ($bmp['bits_per_pixel'] == 16) {
 $color = unpack('n', substr($image, $p, 2));
 $color[1] = $palette[$color[1]+1];
 } else if ($bmp['bits_per_pixel'] == 8) {
 $color = unpack('n', $vide . substr ($image, $p, 1));
 $color[1] = $palette[$color[1]+1];
 } else if ($bmp['bits_per_pixel'] ==4) {
 $color = unpack('n', $vide . substr($image, 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];
 } else if ($bmp['bits_per_pixel'] == 1) {
 $color = unpack('n', $vide . substr($image, floor($p), 1));
 switch (($p * 8) % 8) {
 case 0:
 $color[1] = ($color[1] >> 7);
break;
 case 1:
 $color[1] = ($color[1] & 0x40) >> 6;
break;
 case 2:
 $color[1] = ($color[1] & 0x20) >> 5;
break;
 case 3:
 $color[1] = ($color[1] & 0x10) >> 4;
break;
 case 4:
 $color[1] = ($color[1] & 0x8) >> 3;
break;
 case 5:
 $color[1] = ($color[1] & 0x4) >> 2;
break;
 case 6:
 $color[1] = ($color[1] & 0x2) >> 1;
break;
 case 7:
 $color[1] = ($color[1] & 0x1);
break;
}
 $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($fileHandle);
 return $res;
}

 private function _getDstSize($srcWith, $srcHeight, $dstWidth, $dstHeight)
{
 $size = array('width' => $srcWith, 'height' => $srcHeight);
 if ($dstWidth > 0 && $dstHeight > 0) {
 if ($srcWith > 0 && $srcHeight > 0) {
 if ($srcWith / $srcHeight >= $dstWidth / $dstHeight) {
 if ($srcWith > $dstWidth) {
 $size['width'] = $dstWidth;
 $size['height'] = $srcHeight * $dstWidth / $srcWith;
}
 } else {
 if ($srcHeight > $dstHeight) {
 $size['width'] = $srcWith * $dstHeight / $srcHeight;
 $size['height'] = $dstHeight;
}
}
}
}
 return $size;
}
}
登录后复制

相关标签:
git
最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
最新问题
热门推荐
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号