PHP |想象一下 importImagePixels()函数
Imagick::importImagePixels()函数是PHP中的一个内置函数,用于将像素从数组导入图像。
句法:
bool Imagick::importImagePixels( int $x, int $y, int $width, int $height, string $map,
int $storage, array $pixels )
参数:此函数接受上面提到的七个参数,如下所述:
- $x:它指定图像的 x 位置。
- $y:指定图像的y位置。
- $width:它指定图像的宽度。
- $height:指定图片高度。
- $map:将像素排序图指定为字符串。
- $storage:指定像素存储方式,是一个整数值,对应一个PIXEL常量。
- $pixels:它指定像素数组。
PIXEL 常量列表如下:
- 想像::PIXEL_CHAR (0)
- 想像::PIXEL_DOUBLE (1)
- 想像::PIXEL_FLOAT (2)
- 想像::PIXEL_INTEGER (3)
- 想像::PIXEL_LONG (4)
- imagick::PIXEL_QUANTUM (5)
- 想像::PIXEL_SHORT (6)
返回值:此函数在成功时返回 TRUE。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的Imagick::importImagePixels()函数:
方案一:
newImage(100, 100, 'white');
// Import the pixels into image.
$imagick->importImagePixels(0, 0, 100, 100, "RGB", imagick::PIXEL_FLOAT, $pixels);
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick;
?>
输出:
方案二:
newImage(100, 100, 'white');
// Import the pixels into image.
$imagick->importImagePixels(0, 0, 100, 100, "RGB", imagick::PIXEL_FLOAT, $pixels);
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick;
?>
输出:
参考: https://www. PHP.net/manual/en/imagick.importimagepixels。 PHP