📜  PHP | Gmagick getimageresolution()函数

📅  最后修改于: 2022-05-13 01:56:47.774000             🧑  作者: Mango

PHP | Gmagick getimageresolution()函数

Gmagick::getimageresolution()函数是PHP中的一个内置函数,用于获取图像对象的分辨率。

句法:

array Gmagick::getimageresolution( void )

参数:此函数不接受任何参数。

返回值:此函数将分辨率作为数组返回。

下面的程序说明了PHP中的Gmagick::getimageresolution()函数:

原图1:
https://media.geeksforgeeks.org/wp-content/uploads/geeks-21.png

方案一:

getimageresolution();
echo "X = ".$res['x'] . "
"; echo "Y = ".$res['y'] ."
"; ?>

输出:

X = 37.8
Y = 37.8

原始图像 2:
https://media.geeksforgeeks.org/wp-content/uploads/Screenshot-from-2018-10-16-23-23-54.png

方案二:

setFillColor(new GmagickPixel('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 GmagickPixel('white')); 
             
// Draw the image          
$im->drawImage($draw); 
$im->setImageResolution(50, 50); 
  
// getting Resolution of created image
// using getimageresolution function
$res = $im->getimageresolution();
echo "X = ".$res['x'] . "
"; echo "Y = ".$res['y'] ."
"; ?> 

输出:

X = 50
Y = 50 

参考: http: PHP。 PHP