imagecopyresampled() 函数用于将一幅图像的一部分复制到另一幅图像,并对其进行重新采样。其语法如下:
bool imagecopyresampled ( resource $dst_image , resource $src_image , int $dst_x , int $dst_y , int $src_x , int $src_y , int $dst_w , int $dst_h , int $src_w , int $src_h )
参数说明:
$dst_image
:目标图像资源(目标图像的标识符)。$src_image
:源图像资源(要复制的图像的标识符)。$dst_x
、$dst_y
:目标图像的左上角的 x 和 y 坐标。$src_x
、$src_y
:源图像的左上角的 x 和 y 坐标。$dst_w
、$dst_h
:目标图像的宽度和高度。$src_w
、$src_h
:源图像的宽度和高度。示例:
$src_image = imagecreatefromjpeg('source.jpg');
$dst_image = imagecreatetruecolor(200, 200);
imagecopyresampled($dst_image, $src_image, 0, 0, 0, 0, 200, 200, imagesx($src_image), imagesy($src_image));
header('Content-Type: image/jpeg');
imagejpeg($dst_image);
imagedestroy($src_image);
imagedestroy($dst_image);
这段代码将一个 JPEG 图像的一部分复制到一个新的 200x200 像素的图像中,并输出到浏览器上。