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