📜  PHP | Gmagick getimageunits()函数

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

PHP | Gmagick getimageunits()函数

Gmagick::getimageunits()函数是PHP中的一个内置函数,用于获取特定图像的分辨率单位。

句法:

int Gmagick::getimageunits( void )

参数:此函数不接受任何参数。
返回值:此函数返回一个包含图像单位分辨率的整数。
下面的程序说明了PHP中的Gmagick::getimageunits()函数:
原图1:

方案一:

php
getimageunits();
 
// Display the output
echo "
Units = "; print_r($unit); ?>


php
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);
   
// Gmagick function to gets
// units of created image
$res= $im->getimageunits();
     
// Display the units of image
echo "Units =  ";
print_r($res);
?>


输出:

Units = 2

原始图像 2:

https://media.geeksforgeeks.org/wp-content/uploads/Screenshot-from-2018-10-16-23-23-54-1.png

方案二:

PHP

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);
   
// Gmagick function to gets
// units of created image
$res= $im->getimageunits();
     
// Display the units of image
echo "Units =  ";
print_r($res);
?>

输出:

Units = 0

参考: http: PHP。 PHP