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
方案二:
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