兼容性最强的PHP生成缩略图的函数代码(修改版)

Peony ·
更新时间:2024-11-14
· 787 次阅读

代码如下:
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实现上传图片生成缩略图示例



函数 兼容 兼容性 PHP 缩略图

需要 登录 后方可回复, 如果你还没有账号请 注册新账号