PHP | Gmagick getimageformat()函数
Gmagick::getimageformat()函数是PHP中的一个内置函数,它返回图像的格式。
句法:
string Gmagick::getimageformat( void )
参数:此函数不接受任何参数。
返回值:该函数在成功时以字符串的形式返回图像格式。
下面的程序说明了PHP中的Gmagick::getimageformat()函数:
原图1:
方案一:
getimageformat();
// Display the format sequence of image
echo $res;
?>
输出:
PNG
原始图像 2:
方案二:
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->setImageFormat('jpeg');
// Gmagick function to get format of created image
$res= $im->getimageformat();
// Display the format of image
echo $res;
?>
输出:
jpeg
参考: http: PHP。 PHP