Searched refs:tpixels (Results 1 – 10 of 10) sorted by relevance
/PHP-5.3/ext/gd/libgd/ |
H A D | gd_color.c | 42 rgb = im1->tpixels[y][x]; in gdImageColorMatch()
|
H A D | gd_gd2.c | 329 if (!gdGetInt(&im->tpixels[y][x], in)) { in gdImageCreateFromGd2Ctx() 330 im->tpixels[y][x] = 0; in gdImageCreateFromGd2Ctx() 348 im->tpixels[y][x] = a + r + g + b; in gdImageCreateFromGd2Ctx() 584 im->tpixels[y - srcy][x - srcx] = ch; in gdImageCreateFromGd2PartCtx() 742 int p = im->tpixels[y][x]; in _gdImageGd2() 756 gdPutInt(im->tpixels[y][x], out); in _gdImageGd2()
|
H A D | gd_gd.c | 187 im->tpixels[y][x] = pix; in gdImageCreateFromGdCtx() 257 gdPutInt(im->tpixels[y][x], out); in _gdImageGd()
|
H A D | gd_jpeg.c | 226 int val = im->tpixels[i][j]; in gdImageJpegCtx() 429 register int *tpix = im->tpixels[i]; in gdImageCreateFromJpegCtx() 442 register int *tpix = im->tpixels[i]; in gdImageCreateFromJpegCtx()
|
H A D | gd_png.c | 364 im->tpixels[h][w] = gdTrueColor (r, g, b); in gdImageCreateFromPngCtx() 384 im->tpixels[h][w] = gdTrueColorAlpha(r, g, b, a); in gdImageCreateFromPngCtx() 681 int **ptpixels = im->tpixels; in gdImagePngCtxEx()
|
H A D | gd.c | 166 im->tpixels = 0; in gdImageCreate() 193 im->tpixels = (int **) gdMalloc(sizeof(int *) * sy); in gdImageCreateTrueColor() 201 im->tpixels[i] = (int *) gdCalloc(sx, sizeof(int)); in gdImageCreateTrueColor() 236 if (im->tpixels) { in gdImageDestroy() 238 gdFree(im->tpixels[i]); in gdImageDestroy() 240 gdFree(im->tpixels); in gdImageDestroy() 758 im->tpixels[y][x] = color; in gdImageSetPixel() 761 im->tpixels[y][x] = gdAlphaBlend(im->tpixels[y][x], color); in gdImageSetPixel() 764 im->tpixels[y][x] = gdAlphaBlend(im->tpixels[y][x], color); in gdImageSetPixel() 767 im->tpixels[y][x] = gdLayerOverlay(im->tpixels[y][x], color); in gdImageSetPixel() [all …]
|
H A D | gd.h | 152 int ** tpixels; member 622 #define gdImageTrueColorPixel(im, x, y) (im)->tpixels[(y)][(x)]
|
H A D | gd_topal.c | 130 #define input_buf (oim->tpixels) 2012 gdFree (oim->tpixels[i]); 2014 gdFree (oim->tpixels); 2015 oim->tpixels = 0;
|
H A D | gdft.c | 642 tpixel = &im->tpixels[y][x];
|
/PHP-5.3/ext/gd/ |
H A D | gd.c | 2945 if (im->tpixels && gdImageBoundsSafe(im, x, y)) { in PHP_FUNCTION()
|
Completed in 38 milliseconds