Home
last modified time | relevance | path

Searched refs:pixels (Results 1 – 18 of 18) sorted by relevance

/imagick/tests/
H A D010_importimagepixels.phpt14 /* 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 D250_ImagickPixelIterator_resetIterator_basic.phpt20 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 D091_Imagick_linearStretchImage_basic.phpt17 $pixels = $imagick->getImageWidth() * $imagick->getImageHeight();
18 $imagick->linearStretchImage($blackThreshold * $pixels, $whiteThreshold * $pixels);
H A D083_Imagick_getPixelIterator_basic.phpt18 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 D084_Imagick_getPixelRegionIterator_basic.phpt18 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 D248_ImagickPixelIterator_clear_basic.phpt19 foreach ($imageIterator as $pixels) {
21 /* Loop through the pixels in the row (columns) */
22 foreach ($pixels as $column => $pixel) {
H A D249_ImagickPixelIterator_getNextIteratorRow_basic.phpt18 while ($pixels = $imageIterator->getNextIteratorRow()) {
20 /* Loop through the pixels in the row (columns) */
21 foreach ($pixels as $column => $pixel) {
H A D251_ImagickPixelIterator_setIteratorRow_basic.phpt19 $pixels = $imageIterator->getCurrentIteratorRow();
20 /* Loop through the pixels in the row (columns) */
21 foreach ($pixels as $pixel) {
H A D252_ImagickPixelIterator_construct_basic.phpt18 foreach ($imageIterator as $pixels) {
19 /* Loop through the pixels in the row (columns) */
20 foreach ($pixels as $column => $pixel) {
H A D247_ImagickPixelIterator_construct_basic.phpt18 foreach ($imageIterator as $pixels) {
19 /* Loop through the pixels in the row (columns) */
20 foreach ($pixels as $column => $pixel) {
H A D256_Imagick_exportImagePixels_basic.phpt37 $pixels = $imagick->exportImagePixels(0, 0, 1, 256, "R", $pixelType);
41 $scaledActualValue = $scaleFn($pixels[$i]);
45 var_dump($pixels);
H A D229_Tutorial_fxAnalyzeImage_case1.phpt26 foreach ($imageIterator as $pixels) { /* Loop trough pixel rows */
27 foreach ($pixels as $pixel) { /* Loop through the pixels in the row (columns) */
H A D274_imagick_setImageAlpha.phpt54 $pixels = $imagick->exportImagePixels(0, 0, 1, 1, "RGBA", $pixelType);
59 $actual = $pixels[$channel];
H A D014-setresourcelimit.phpt28 …//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 D160_Imagick_transparentPaintImage_basic.phpt23 //Not required, but helps tidy up left over pixels
/imagick/
H A DImagick.stub.php316 * @param array $pixels
326 array $pixels): bool {} argument
H A Dimagick_class.c2382 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 DImagick_arginfo.h1331 ZEND_ARG_TYPE_INFO(0, pixels, IS_ARRAY, 0)
1333 ZEND_ARG_INFO(0, pixels)

Completed in 67 milliseconds