Lines Matching defs:im
741 #define gdImageTrueColor(im) ((im)->trueColor) argument
743 #define gdImageSX(im) ((im)->sx) argument
744 #define gdImageSY(im) ((im)->sy) argument
745 #define gdImageColorsTotal(im) ((im)->colorsTotal) argument
746 #define gdImageRed(im, c) ((im)->trueColor ? gdTrueColorGetRed(c) : \ argument
748 #define gdImageGreen(im, c) ((im)->trueColor ? gdTrueColorGetGreen(c) : \ argument
750 #define gdImageBlue(im, c) ((im)->trueColor ? gdTrueColorGetBlue(c) : \ argument
752 #define gdImageAlpha(im, c) ((im)->trueColor ? gdTrueColorGetAlpha(c) : \ argument
754 #define gdImageGetTransparent(im) ((im)->transparent) argument
755 #define gdImageGetInterlaced(im) ((im)->interlace) argument
762 #define gdImagePalettePixel(im, x, y) (im)->pixels[(y)][(x)] argument
763 #define gdImageTrueColorPixel(im, x, y) (im)->tpixels[(y)][(x)] argument
764 #define gdImageResolutionX(im) (im)->res_x argument
765 #define gdImageResolutionY(im) (im)->res_y argument
922 #define gdImageBoundsSafe(im, x, y) (!((((y) < (im)->cy1) || ((y) > (im)->cy2)) || (((x) < (im)->cx… argument