php imagecopy 用法,PHP函数补完:ImageCopyResamples()

PHP缩放图像有两种方法:

ImageCopyResized() 函数在所有GD版本中有效,但其缩放图像的算法比较粗糙。

ImageCopyResamples(),其像素插值算法得到的图像边缘比较平滑,质量较好,但该函数的速度比 ImageCopyResized() 慢。

if($src_h){

$thumb_w = $size;

$thumb_h = intval($src_h / $src_w * $size);

}else{

$thumb_h = $size;

$thumb_w = intval($src_w / $src_h * $size);

}

$thumb = imagecreatetruecolor($thumb_w, $thumb_h);

// 旧方法,不过产出来的画质效果极差

//imagecopyresized($thumb, $src, 0, 0, 0, 0, $thumb_w, $thumb_h, $src_w, $src_h);

imagecopyresampled($thumb, $src, 0, 0, 0, 0, $thumb_w, $thumb_h, $src_w, $src_h);

$file= array_pop(explode("/",$filename));

imagejpeg($thumb, "/tmp/thumb/i-$size-".$file);

两个函数的参数是一样的。如下:

ImageCopyResampled(dest,src,dx,dy,sx,sy,dw,dh,sw,sh);

ImageCopyResized(dest,src,dx,dy,sx,sy,dw,dh,sw,sh);

它们两个都是从原图像(source)中抓取特定位置(sx,sy)复制图像qu区域到目标t图像(destination)的特定位置(dx,dy)。另外dw,dh指定复制的图像区域在目标图像上的大小,sw,sh指定从原图像复制的图像区域的大小。如果有ps经验的话,就相当于在原图像选择一块区域,剪切移动到目的图像上,同时有拉伸或缩小的操作。

在php 手册上写imagecopyresampled 和imagecopyresized 主要的不同点如下,就是让他画质更好,更接近原色:imagecopyresampled() copies a rectangular portion of one image to another image, smoothly interpolating pixel values​​ so that, in particular, reducing the size of an image still retains a great deal of clarity

imagecopyresampled() 和imagecopyresized() 的差异很明显,跟本不需要考虑使用imagecopyresized() ,除非是使用gif ,否则只有imagecopyresampled 可以看而已。

本例将以原来的四分之一大小显示图像。

// 指定文件路径和缩放比例

$filename = 'test.jpg';

$percent = 0.5;

// 指定头文件Content typezhi值

header('Content-type: image/jpeg');

// 获取图片的宽高

list($width, $height) = getimagesize($filename);

$newwidth = $width * $percent;

$newheight = $height * $percent;

// 创建一个图片。接收参数分别为宽高,返回生成的资源句柄

$thumb = imagecreatetruecolor($newwidth, $newheight);

//获取源文件资源句柄。接收参数为图片路径,返回句柄

$source = imagecreatefromjpeg($filename);

// 将源文件剪切全部域并缩小放到目标图片上。前两个为资源句柄

imagecopyresampled($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);

// 输出给浏览器

imagejpeg($thumb);

?>

本例将把一幅图像按最宽或最高 200 像素来显示。

// 文件路径

$filename = 'test.jpg';

// 最大宽高

$width = 200;

$height = 200;

// 设置http头Content type值

header('Content-type: image/jpeg');

// 获取图片宽高

list($width_orig, $height_orig) = getimagesize($filename);

if ($width && ($width_orig < $height_orig))

{ //高比宽大,高为200,kuan宽按比例缩小

$width = ($height / $height_orig) * $width_orig;

}else {

$height = ($width / $width_orig) * $height_orig;

}

// 改变大小。和上例一样。

$image_p = imagecreatetruecolor($width, $height);

$image = imagecreatefromjpeg($filename);

imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);

// Output

imagejpeg($image_p, null,100)

?>

延伸阅读

此文章所在专题列表如下:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值