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常量列表如下:
- imagick::PIXEL_CHAR(0)
- imagick::PIXEL_DOUBLE(1)
- imagick::PIXEL_FLOAT(2)
- imagick::PIXEL_INTEGER(3)
- imagick::PIXEL_LONG(4)
- imagick::PIXEL_QUANTUM(5)
- imagick::PIXEL_SHORT(6)
返回值:成功时此函数返回TRUE。
异常:该函数在错误时引发ImagickException。
下面给出的程序说明了PHP中的Imagick::importImagePixels()函数:
程序1:
<?php
// Create a new Imagick object
$imagick = new Imagick();
// Generate array of pixels
$pixels =
array_merge(array_pad(array(), 15000, 0),
array_pad(array(), 15000, 255));
$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;
?>
输出:
程序2:
<?php
// Create a new Imagick object
$imagick = new Imagick();
// Generate array of pixels
$pixels =
array_merge(array_pad(array(), 5000, 0),
array_pad(array(), 5000, 255),
array_pad(array(), 5000, 0),
array_pad(array(), 5000, 255),
array_pad(array(), 5000, 0),
array_pad(array(), 5000, 255));
$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
相关用法
- PHP Imagick readImageFile()用法及代码示例
- PHP Imagick distortImage()用法及代码示例
- PHP Imagick remapImage()用法及代码示例
- PHP Imagick readImage()用法及代码示例
- PHP Imagick getCopyright()用法及代码示例
- PHP Imagick separateImageChannel()用法及代码示例
- PHP Imagick extentImage()用法及代码示例
- PHP Imagick readImages()用法及代码示例
- PHP Imagick sepiaToneImage()用法及代码示例
- PHP Imagick setColorspace()用法及代码示例
- PHP Imagick convolveImage()用法及代码示例
- PHP Imagick despeckleImage()用法及代码示例
- PHP Imagick enhanceImage()用法及代码示例
- PHP Imagick encipherImage()用法及代码示例
- PHP Imagick embossImage()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick importImagePixels() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。