Lines Matching defs:im
764 #define gdImageTrueColor(im) ((im)->trueColor) argument
766 #define gdImageSX(im) ((im)->sx) argument
767 #define gdImageSY(im) ((im)->sy) argument
768 #define gdImageColorsTotal(im) ((im)->colorsTotal) argument
769 #define gdImageRed(im, c) ((im)->trueColor ? gdTrueColorGetRed(c) : \ argument
771 #define gdImageGreen(im, c) ((im)->trueColor ? gdTrueColorGetGreen(c) : \ argument
773 #define gdImageBlue(im, c) ((im)->trueColor ? gdTrueColorGetBlue(c) : \ argument
775 #define gdImageAlpha(im, c) ((im)->trueColor ? gdTrueColorGetAlpha(c) : \ argument
777 #define gdImageGetTransparent(im) ((im)->transparent) argument
778 #define gdImageGetInterlaced(im) ((im)->interlace) argument
785 #define gdImagePalettePixel(im, x, y) (im)->pixels[(y)][(x)] argument
786 #define gdImageTrueColorPixel(im, x, y) (im)->tpixels[(y)][(x)] argument
787 #define gdImageResolutionX(im) (im)->res_x argument
788 #define gdImageResolutionY(im) (im)->res_y argument
945 #define gdImageBoundsSafe(im, x, y) (!((((y) < (im)->cy1) || ((y) > (im)->cy2)) || (((x) < (im)->cx… argument