Lines Matching refs:pixel
64 #include "MagickCore/pixel-accessor.h"
173 % pixel packets.
189 % o pixels: The address of a byte (8 bits) array of pixel data created by
355 % o pixels: The address of a byte (8 bits) array of pixel data created by
359 % pixel data.
659 " Bits per pixel: %.20g",(double) bmp_info.bits_per_pixel);
967 Convert BMP raster image to pixel packets.
1181 pixel;
1203 pixel=(size_t) (*p++);
1204 pixel|=(*p++) << 8;
1205 red=((pixel & bmp_info.red_mask) << shift.red) >> 16;
1210 green=((pixel & bmp_info.green_mask) << shift.green) >> 16;
1217 blue=((pixel & bmp_info.blue_mask) << shift.blue) >> 16;
1228 alpha=((pixel & bmp_info.alpha_mask) << shift.alpha) >> 16;
1299 pixel;
1307 pixel=(size_t) (*p++);
1308 pixel|=((size_t) *p++ << 8);
1309 pixel|=((size_t) *p++ << 16);
1310 pixel|=((size_t) *p++ << 24);
1311 red=((pixel & bmp_info.red_mask) << shift.red) >> 16;
1314 green=((pixel & bmp_info.green_mask) << shift.green) >> 16;
1317 blue=((pixel & bmp_info.blue_mask) << shift.blue) >> 16;
1326 alpha=((pixel & bmp_info.alpha_mask) << shift.alpha) >> 16;
1836 Convert PseudoClass packet to BMP pixel.
1894 Convert DirectClass packet to ARGB8888 pixel.