PHP缩放图像有两种方法:
- ImageCopyResized() 函数在所有GD版本中有效,但其缩放图像的算法比较粗糙。
- ImageCopyResamples(),其像素插值算法得到的图像边缘比较平滑,质量较好,但该函数的速度比 ImageCopyResized() 慢。
03 |
$thumb_h = intval($src_h / $src_w * $size); |
06 |
$thumb_w = intval($src_w / $src_h * $size); |
09 |
$thumb = imagecreatetruecolor($thumb_w, $thumb_h); |
12 |
imagecopyresampled($thumb, $src, 0, 0, 0, 0, $thumb_w, $thumb_h, $src_w, $src_h); |
14 |
$file= array_pop(explode("/",$filename)); |
16 |
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 可以看而已。
本例将以原来的四分之一大小显示图像。
03 |
$filename = 'test.jpg'; |
06 |
header('Content-type: image/jpeg'); |
08 |
list($width, $height) = getimagesize($filename); |
09 |
$newwidth = $width * $percent; |
10 |
$newheight = $height * $percent; |
12 |
$thumb = imagecreatetruecolor($newwidth, $newheight); |
14 |
$source = imagecreatefromjpeg($filename); |
16 |
imagecopyresampled($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height); |
本例将把一幅图像按最宽或最高 200 像素来显示。
03 |
$filename = 'test.jpg'; |
08 |
header('Content-type: image/jpeg'); |
10 |
list($width_orig, $height_orig) = getimagesize($filename); |
11 |
if ($width && ($width_orig < $height_orig)) |
13 |
$width = ($height / $height_orig) * $width_orig; |
15 |
$height = ($width / $width_orig) * $height_orig; |
18 |
$image_p = imagecreatetruecolor($width, $height); |
19 |
$image = imagecreatefromjpeg($filename); |
20 |
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig); |
22 |
imagejpeg($image_p, null,100) |
延伸阅读
此文章所在专题列表如下:
- PHP函数补完:get_magic_quotes_gpc()
- PHP函数补完:error_reporting()
- PHP函数补完:preg_match()
- PHP函数补完:urlencode()
- PHP函数补完:array_multisort()
- PHP函数补完:array_splice()
- PHP函数补完:isset()
- PHP函数补完:getenv()
- PHP函数补完:header()
- PHP函数补完:mysql_num_rows()
- PHP函数补完:list()
- PHP函数补完:mysql_query()
- PHP函数补完:mysql_fetch_array()
- PHP函数补完:number_format()
- PHP函数补完:explode()
- PHP函数补完:call_user_func()
- PHP函数补完:ImageCopyResamples()
- PHP函数补完:import_request_variables()
- PHP函数补完:parse_url()
- PHP函数补完:移除HTML标签strip_tags()
- PHP函数补完:输出数组结构与内容var_dump()
- PHP函数补完:var_export()
- PHP函数补完:判断变量是否为数字is_numeric()
- PHP函数补完:session_name()
- PHP函数补完:session_id()
- PHP函数补完:nl2br()与nl2p()函数
- PHP函数补完:shuffle()取数组若干个随机元素
- PHP函数补完:http_build_query()构造URL字符串
- PHP函数补完:stream_context_create()模拟POST/GET