PHP | Gmagick setimagetype()函数
Gmagick::setimagetype()函数是PHP中的一个内置函数,用于设置图像类型。
句法:
Gmagick Gmagick::setimagetype( int $imgType )
参数:此函数接受单个参数$imgType ,该参数保存对应于 IMGTYPE 常量之一的整数值。
下面列出了所有 IMGTYPE 常量:
- Gmagick::IMGTYPE_UNDEFINED (0)
- Gmagick::IMGTYPE_BILEVEL (1)
- Gmagick::IMGTYPE_GRAYSCALE (2)
- Gmagick::IMGTYPE_GRAYSCALEMATTE (3)
- Gmagick::IMGTYPE_PALETTE (4)
- Gmagick::IMGTYPE_PALETTEMATTE (5)
- Gmagick::IMGTYPE_TRUECOLOR (6)
- Gmagick::IMGTYPE_TRUECOLORMATTE (7)
- Gmagick::IMGTYPE_COLORSEPARATION (8)
- Gmagick::IMGTYPE_COLORSEPARATIONMATTE (9)
- Gmagick::IMGTYPE_OPTIMIZE (10)
返回值:此函数在成功时返回 Gmagick 对象。
异常:此函数在错误时抛出 GmagickException。
下面给出的程序说明了PHP中的Gmagick::setimagetype()函数:
使用图像:
方案一:
setimagetype(1);
// Display the image
header("Content-Type: image/png");
echo $gmagick;
?>
输出:
方案二:
setimagetype(3);
// Display the image
header("Content-Type: image/png");
echo $gmagick;
?>
输出:
方案 3:
setFillColor('white');
// Function to draw rectangle
$draw->rectangle(0, 0, 800, 400);
// Set the fill color
$draw->setFillColor('red');
// Set the font size
$draw->setfontsize(50);
// Annotate a text
$draw->annotate(30, 100, 'GeeksforGeeks');
// Use of drawimage function
$gmagick->drawImage($draw);
// Set the image type
$gmagick->setimagetype(2);
// Display the image
header("Content-Type: image/png");
echo $gmagick;
?>
输出:
参考: https://www. PHP.net/manual/en/gmagick.setimagetype。 PHP