Lines Matching refs:pixel
70 #include "MagickCore/pixel.h"
71 #include "MagickCore/pixel-accessor.h"
425 pixel;
448 pixel=(*compact_pixels++);
456 *pixels++=(pixel >> 7) & 0x01 ? 0U : 255U;
457 *pixels++=(pixel >> 6) & 0x01 ? 0U : 255U;
458 *pixels++=(pixel >> 5) & 0x01 ? 0U : 255U;
459 *pixels++=(pixel >> 4) & 0x01 ? 0U : 255U;
460 *pixels++=(pixel >> 3) & 0x01 ? 0U : 255U;
461 *pixels++=(pixel >> 2) & 0x01 ? 0U : 255U;
462 *pixels++=(pixel >> 1) & 0x01 ? 0U : 255U;
463 *pixels++=(pixel >> 0) & 0x01 ? 0U : 255U;
469 *pixels++=(unsigned char) ((pixel >> 6) & 0x03);
470 *pixels++=(unsigned char) ((pixel >> 4) & 0x03);
471 *pixels++=(unsigned char) ((pixel >> 2) & 0x03);
472 *pixels++=(unsigned char) ((pixel & 0x03) & 0x03);
478 *pixels++=(unsigned char) ((pixel >> 4) & 0xff);
479 *pixels++=(unsigned char) ((pixel & 0x0f) & 0xff);
485 *pixels++=(unsigned char) pixel;
773 const ssize_t type,const size_t packet_size,const Quantum pixel,Quantum *q,
779 SetPixelIndex(image,ScaleQuantumToChar(pixel),q);
781 SetPixelIndex(image,ScaleQuantumToShort(pixel),q);
790 SetPixelAlpha(image, pixel,q);
796 SetPixelRed(image,pixel,q);
798 SetPixelGray(image,pixel,q);
804 SetPixelAlpha(image,pixel,q);
806 SetPixelGreen(image,pixel,q);
812 SetPixelAlpha(image,pixel,q);
814 SetPixelBlue(image,pixel,q);
820 SetPixelBlack(image,pixel,q);
823 SetPixelAlpha(image,pixel,q);
832 SetPixelAlpha(image,pixel,q);
843 pixel;
868 pixel=ScaleCharToQuantum(*p++);
872 pixel=ScaleShortToQuantum(nibble);
876 SetPSDPixel(image,channels,type,packet_size,pixel,q,exception);
890 SetPSDPixel(image,channels,type,packet_size,(((unsigned char) pixel)