📜  PHP |想象一下 getImageFormat()函数

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

PHP |想象一下 getImageFormat()函数

Imagick::getImageFormat()函数是PHP中的一个内置函数,用于获取序列中特定图像的格式
句法:

string Imagick::getImageFormat( void )

参数:此函数不接受任何参数。
返回值:该函数在成功时返回一个图像格式的字符串。
下面的程序说明了PHP中的Imagick::getImageFormat()函数:
方案一:
原图:

php
getImageFormat();
  
// Display the format sequence of image
echo $res;
?>


php
setFillColor(new ImagickPixel('green'));
 
// Set the text font size
$draw->setFontSize(50);
 
$matrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($matrix['textWidth'], $matrix['textHeight'],
         new ImagickPixel('white'));
 
// Draw the image         
$im->drawImage($draw);
 
$im->setImageFormat('jpeg');
 
// Imagick function to get format of created image
$res= $im->getImageFormat();
 
// Display the format sequence of image
echo $res;
?>


输出:

PNG

方案二:

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

PHP

setFillColor(new ImagickPixel('green'));
 
// Set the text font size
$draw->setFontSize(50);
 
$matrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($matrix['textWidth'], $matrix['textHeight'],
         new ImagickPixel('white'));
 
// Draw the image         
$im->drawImage($draw);
 
$im->setImageFormat('jpeg');
 
// Imagick function to get format of created image
$res= $im->getImageFormat();
 
// Display the format sequence of image
echo $res;
?>

输出:

jpeg

参考: http: PHP。 PHP