PHP | Gmagick setsize()函数
Gmagick::setsize()函数是PHP中的一个内置函数,用于设置与 gmagick 对象关联的大小。
句法:
Gmagick Gmagick::setsize( int $columns, int $rows )
参数:此函数接受上面提到的两个参数,如下所述:
- $columns:它指定图像的宽度。
- $rows:它指定图像的高度。
返回值:此函数在成功时返回 Gmagick 对象。
异常:此函数在错误时抛出 GmagickException。
下面给出的程序说明了PHP中的Gmagick::setsize()函数:
使用图像:
方案一:
setsize(200, 200);
// Get the size
$size = $gmagick->getsize();
print_r($size);
?>
输出:
Array ( [columns] => 200 [rows] => 200 )
方案二:
setsize(600, 200);
// Crop image using size
$gmagick->cropimage(
$gmagick->getsize()['columns'],
$gmagick->getsize()['rows'], 0, 0
);
// Output the image
header('Content-type: image/png');
echo $gmagick;
?>
输出:
参考: https://www. PHP.net/manual/en/gmagick.setsize。 PHP