兼容性最强的PHP生成缩略图的函数代码(修改版)
更新时间:2011年01月18日 00:00:25 作者:
写通用性程序考虑兼容性是很头痛的事情,关于用PHP生成缩略图的代码很多,不过能完全兼容gd1.6和gd2.x,并能保证缩图清晰性的代码几乎没有,我把我以前的代码改了一下,就能实现了。
复制代码 代码如下:
function ImageResize($srcFile,$toW,$toH,$toFile="")
{
if($toFile==""){ $toFile = $srcFile; }
$info = "";
$data = GetImageSize($srcFile,$info);
switch ($data[2])
{
case 1:
if(!function_exists("imagecreatefromgif")){
echo "你的GD库不能使用GIF格式的图片,请使用Jpeg或PNG格式!<a href='javascript:go(-1);'>返回</a>";
exit();
}
$im = ImageCreateFromGIF($srcFile);
break;
case 2:
if(!function_exists("imagecreatefromjpeg")){
echo "你的GD库不能使用jpeg格式的图片,请使用其它格式的图片!<a href='javascript:go(-1);'>返回</a>";
exit();
}
$im = ImageCreateFromJpeg($srcFile);
break;
case 3:
$im = ImageCreateFromPNG($srcFile);
break;
}
$srcW=ImageSX($im);
$srcH=ImageSY($im);
$toWH=$toW/$toH;
$srcWH=$srcW/$srcH;
if($toWH<=$srcWH){
$ftoW=$toW;
$ftoH=$ftoW*($srcH/$srcW);
}
else{
$ftoH=$toH;
$ftoW=$ftoH*($srcW/$srcH);
}
if($srcW>$toW||$srcH>$toH)
{
if(function_exists("imagecreatetruecolor")){
@$ni = ImageCreateTrueColor($ftoW,$ftoH);
if($ni) ImageCopyResampled($ni,$im,0,0,0,0,$ftoW,$ftoH,$srcW,$srcH);
else{
$ni=ImageCreate($ftoW,$ftoH);
ImageCopyResized($ni,$im,0,0,0,0,$ftoW,$ftoH,$srcW,$srcH);
}
}else{
$ni=ImageCreate($ftoW,$ftoH);
ImageCopyResized($ni,$im,0,0,0,0,$ftoW,$ftoH,$srcW,$srcH);
}
if(function_exists('imagejpeg')) ImageJpeg($ni,$toFile);
else ImagePNG($ni,$toFile);
ImageDestroy($ni);
}
ImageDestroy($im);
}
您可能感兴趣的文章:
- PHP使用imagick读取PDF生成png缩略图的两种方法
- php 根据url自动生成缩略图并处理高并发问题
- php生成缩略图示例代码分享(使用gd库实现)
- php利用GD库生成缩略图示例
- 使用gd库实现php服务端图片裁剪和生成缩略图功能分享
- php生成缩略图填充白边(等比缩略图方案)
- PHP imagegrabscreen和imagegrabwindow(截取网站缩略图)的实例代码
- 基于PHP服务端图片生成缩略图的方法详解
- php图片的裁剪与缩放生成符合需求的缩略图
- PHPThumb PHP 图片缩略图库
- php 缩略图实现函数代码
- PHP缩略图等比例无损压缩,可填充空白区域补充色
- PHP用GD库生成高质量的缩略图片
- 兼容性比较好的PHP生成缩略图的代码
- 完美实现GIF动画缩略图的php代码
- php下尝试使用GraphicsMagick的缩略图功能
- php图片处理:加水印、缩略图的实现(自定义函数:watermark、thumbnail)
- php实现上传图片生成缩略图示例
最新评论