/imagick/tests/ |
H A D | 010_importimagepixels.phpt | 14 /* Generate array of pixels. 2000 pixels per color stripe */ 17 $pixels = 24 /* Width and height. The area is amount of pixels divided 32 /* Import the pixels into image. 33 width * height * strlen("RGB") must match count($pixels) */ 34 $im->importImagePixels(0, 0, $width, $height, "RGB", Imagick::PIXEL_CHAR, $pixels);
|
H A D | 250_ImagickPixelIterator_resetIterator_basic.phpt | 20 foreach ($imageIterator as $pixels) { 21 /* Loop through the pixels in the row (columns) */ 22 foreach ($pixels as $column => $pixel) { 37 foreach ($imageIterator as $pixels) { 38 /* Loop through the pixels in the row (columns) */ 39 foreach ($pixels as $column => $pixel) {
|
H A D | 091_Imagick_linearStretchImage_basic.phpt | 17 $pixels = $imagick->getImageWidth() * $imagick->getImageHeight(); 18 $imagick->linearStretchImage($blackThreshold * $pixels, $whiteThreshold * $pixels);
|
H A D | 083_Imagick_getPixelIterator_basic.phpt | 18 foreach ($imageIterator as $row => $pixels) { /* Loop trough pixel rows */ 19 foreach ($pixels as $column => $pixel) { /* Loop through the pixels in the row (columns) */
|
H A D | 084_Imagick_getPixelRegionIterator_basic.phpt | 18 foreach ($imageIterator as $row => $pixels) { /* Loop trough pixel rows */ 19 foreach ($pixels as $column => $pixel) { /* Loop through the pixels in the row (columns) */
|
H A D | 248_ImagickPixelIterator_clear_basic.phpt | 19 foreach ($imageIterator as $pixels) { 21 /* Loop through the pixels in the row (columns) */ 22 foreach ($pixels as $column => $pixel) {
|
H A D | 249_ImagickPixelIterator_getNextIteratorRow_basic.phpt | 18 while ($pixels = $imageIterator->getNextIteratorRow()) { 20 /* Loop through the pixels in the row (columns) */ 21 foreach ($pixels as $column => $pixel) {
|
H A D | 251_ImagickPixelIterator_setIteratorRow_basic.phpt | 19 $pixels = $imageIterator->getCurrentIteratorRow(); 20 /* Loop through the pixels in the row (columns) */ 21 foreach ($pixels as $pixel) {
|
H A D | 252_ImagickPixelIterator_construct_basic.phpt | 18 foreach ($imageIterator as $pixels) { 19 /* Loop through the pixels in the row (columns) */ 20 foreach ($pixels as $column => $pixel) {
|
H A D | 247_ImagickPixelIterator_construct_basic.phpt | 18 foreach ($imageIterator as $pixels) { 19 /* Loop through the pixels in the row (columns) */ 20 foreach ($pixels as $column => $pixel) {
|
H A D | 256_Imagick_exportImagePixels_basic.phpt | 37 $pixels = $imagick->exportImagePixels(0, 0, 1, 256, "R", $pixelType); 41 $scaledActualValue = $scaleFn($pixels[$i]); 45 var_dump($pixels);
|
H A D | 229_Tutorial_fxAnalyzeImage_case1.phpt | 26 foreach ($imageIterator as $pixels) { /* Loop trough pixel rows */ 27 foreach ($pixels as $pixel) { /* Loop through the pixels in the row (columns) */
|
H A D | 274_imagick_setImageAlpha.phpt | 54 $pixels = $imagick->exportImagePixels(0, 0, 1, 1, "RGBA", $pixelType); 59 $actual = $pixels[$channel];
|
H A D | 014-setresourcelimit.phpt | 28 …//Set maximum number of open pixel cache files. When this limit is exceeded, any subsequent pixels… 31 …s to allocate for the pixel cache. When this limit is exceeded, the image pixels are cached to disk 34 …or the pixel cache from the heap. When this limit is exceeded, the image pixels are cached to memo…
|
H A D | 160_Imagick_transparentPaintImage_basic.phpt | 23 //Not required, but helps tidy up left over pixels
|
/imagick/ |
H A D | Imagick.stub.php | 316 * @param array $pixels 326 array $pixels): bool {} argument
|
H A D | imagick_class.c | 2382 zval *pixels; in PHP_METHOD() local 2385 …S() TSRMLS_CC, "llllsla", &x, &y, &width, &height, &map, &map_len, &storage, &pixels) == FAILURE) { in PHP_METHOD() 2403 array = Z_ARRVAL_P(pixels); in PHP_METHOD() 2420 double_array = php_imagick_zval_to_double_array(pixels, &num_elements TSRMLS_CC); in PHP_METHOD() 2436 long_array = php_imagick_zval_to_long_array(pixels, &num_elements TSRMLS_CC); in PHP_METHOD() 2446 char_array = php_imagick_zval_to_char_array(pixels, &num_elements TSRMLS_CC); in PHP_METHOD()
|
H A D | Imagick_arginfo.h | 1331 ZEND_ARG_TYPE_INFO(0, pixels, IS_ARRAY, 0) 1333 ZEND_ARG_INFO(0, pixels)
|