Lines Matching defs:im
737 #define gdImageTrueColor(im) ((im)->trueColor) argument
739 #define gdImageSX(im) ((im)->sx) argument
740 #define gdImageSY(im) ((im)->sy) argument
741 #define gdImageColorsTotal(im) ((im)->colorsTotal) argument
742 #define gdImageRed(im, c) ((im)->trueColor ? gdTrueColorGetRed(c) : \ argument
744 #define gdImageGreen(im, c) ((im)->trueColor ? gdTrueColorGetGreen(c) : \ argument
746 #define gdImageBlue(im, c) ((im)->trueColor ? gdTrueColorGetBlue(c) : \ argument
748 #define gdImageAlpha(im, c) ((im)->trueColor ? gdTrueColorGetAlpha(c) : \ argument
750 #define gdImageGetTransparent(im) ((im)->transparent) argument
751 #define gdImageGetInterlaced(im) ((im)->interlace) argument
758 #define gdImagePalettePixel(im, x, y) (im)->pixels[(y)][(x)] argument
759 #define gdImageTrueColorPixel(im, x, y) (im)->tpixels[(y)][(x)] argument
760 #define gdImageResolutionX(im) (im)->res_x argument
761 #define gdImageResolutionY(im) (im)->res_y argument
918 #define gdImageBoundsSafe(im, x, y) (!((((y) < (im)->cy1) || ((y) > (im)->cy2)) || (((x) < (im)->cx… argument