Searched refs:pixels (Results 1 – 15 of 15) sorted by relevance
/PHP-5.3/ext/gd/tests/ |
H A D | bug39508.phpt | 2 Bug #39508 (imagefill crashes with small images 3 pixels or less)
|
H A D | bug39286.phpt | 2 Bug #39508 (imagefill crashes with small images 3 pixels or less)
|
/PHP-5.3/ext/standard/tests/image/ |
H A D | getimagesize_246x247.phpt | 2 GetImageSize() with 246x247 pixels
|
H A D | getimagesize_384x385.phpt | 2 GetImageSize() with 384x385 pixels
|
/PHP-5.3/ext/gd/libgd/ |
H A D | gd_color.c | 41 color = im2->pixels[y][x]; in gdImageColorMatch()
|
H A D | gd_gd.c | 199 im->pixels[y][x] = ch; in gdImageCreateFromGdCtx() 259 gdPutC((unsigned char) im->pixels[y][x], out); in _gdImageGd()
|
H A D | gd_gd2.c | 337 im->pixels[y][x] = ch; in gdImageCreateFromGd2Ctx() 350 im->pixels[y][x] = chunkBuf[chunkPos++]; in gdImageCreateFromGd2Ctx() 586 im->pixels[y - srcy][x - srcx] = ch; in gdImageCreateFromGd2PartCtx() 748 chunkData[chunkLen++] = im->pixels[y][x]; in _gdImageGd2() 758 gdPutC((unsigned char) im->pixels[y][x], out); in _gdImageGd2()
|
H A D | gd_topal.c | 131 #define output_buf (nim->pixels) 1820 nim->pixels = gdCalloc (sizeof (unsigned char *), oim->sy); 1821 if (!nim->pixels) 1828 nim->pixels[i] = gdCalloc (sizeof (unsigned char *), oim->sx); 1829 if (!nim->pixels[i]) 2026 if (nim->pixels[i]) 2028 gdFree (nim->pixels[i]); 2031 if (nim->pixels) 2033 gdFree (nim->pixels); 2035 nim->pixels = 0;
|
H A D | gd_png.c | 394 im->pixels[h][w] = idx; in gdImageCreateFromPngCtx() 733 row_pointers[j][i] = mapping[im->pixels[j][i]]; in gdImagePngCtxEx() 746 png_write_image(png_ptr, im->pixels); in gdImagePngCtxEx()
|
H A D | gd.h | 106 unsigned char ** pixels; member 621 #define gdImagePalettePixel(im, x, y) (im)->pixels[(y)][(x)]
|
H A D | gd.c | 139 im->pixels = (unsigned char **) gdMalloc(sizeof(unsigned char *) * sy); in gdImageCreate() 148 im->pixels[i] = (unsigned char *) gdCalloc(sx, sizeof(unsigned char)); in gdImageCreate() 230 if (im->pixels) { in gdImageDestroy() 232 gdFree(im->pixels[i]); in gdImageDestroy() 234 gdFree(im->pixels); in gdImageDestroy() 771 im->pixels[y][x] = color; in gdImageSetPixel() 999 return im->pixels[y][x]; in gdImageGetPixel()
|
H A D | gd_jpeg.c | 241 int idx = im->pixels[i][j]; in gdImageJpegCtx()
|
H A D | gdft.c | 696 pixel = &im->pixels[y][x];
|
/PHP-5.3/ext/gd/ |
H A D | gd.c | 2952 if (im->pixels && gdImageBoundsSafe(im, x, y)) { in PHP_FUNCTION() 2953 RETURN_LONG(im->pixels[y][x]); in PHP_FUNCTION()
|
/PHP-5.3/ |
H A D | NEWS | 4937 - Fixed bug #39508 (imagefill crashes with small images 3 pixels or less).
|
Completed in 67 milliseconds