PHP |想象一下 getImagePage()函数
Imagick::getImagePage()函数是PHP中的一个内置函数,用于获取特定图像的页面几何形状。
句法:
array Imagick::getImagePage( void )
参数:此函数不接受任何参数。
返回值:此函数返回与页面几何相关的数组,其中包含键值宽度、高度、x和y 。
下面的程序说明了PHP中的Imagick::getImagePage()函数:
方案一:
原图:
getImagePage();
// Display the result
print_r($res);
?>
输出:
Array ( [width] => 667 [height] => 184 [x] => 0 [y] => 0 )
方案二:
setFillColor(new ImagickPixel('green'));
// Set the text font size
$draw->setFontSize(50);
$metrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($metrix['textWidth'], $metrix['textHeight'],
new ImagickPixel('white'));
// Draw the image
$im->drawImage($draw);
$im->setImageFormat('jpeg');
// getImagePage function to find the page
// of image
$res = $im->getImagePage();
// display result
print_r($res);
?>
输出:
Array ( [width] => 0 [height] => 0 [x] => 0 [y] => 0 )
参考: http: PHP。 PHP