Lines Matching defs:im
748 #define gdImageTrueColor(im) ((im)->trueColor) argument
750 #define gdImageSX(im) ((im)->sx) argument
751 #define gdImageSY(im) ((im)->sy) argument
752 #define gdImageColorsTotal(im) ((im)->colorsTotal) argument
753 #define gdImageRed(im, c) ((im)->trueColor ? gdTrueColorGetRed(c) : \ argument
755 #define gdImageGreen(im, c) ((im)->trueColor ? gdTrueColorGetGreen(c) : \ argument
757 #define gdImageBlue(im, c) ((im)->trueColor ? gdTrueColorGetBlue(c) : \ argument
759 #define gdImageAlpha(im, c) ((im)->trueColor ? gdTrueColorGetAlpha(c) : \ argument
761 #define gdImageGetTransparent(im) ((im)->transparent) argument
762 #define gdImageGetInterlaced(im) ((im)->interlace) argument
769 #define gdImagePalettePixel(im, x, y) (im)->pixels[(y)][(x)] argument
770 #define gdImageTrueColorPixel(im, x, y) (im)->tpixels[(y)][(x)] argument
771 #define gdImageResolutionX(im) (im)->res_x argument
772 #define gdImageResolutionY(im) (im)->res_y argument
921 #define gdImageBoundsSafe(im, x, y) (!((((y) < (im)->cy1) || ((y) > (im)->cy2)) || (((x) < (im)->cx… argument