Home | History | Annotate | Download | only in coders

Lines Matching refs:pixel

594                 if (LocaleCompare(keyword,"pixel-intensity") == 0)
872 pixel;
876 p=PushCharPixel(p,&pixel);
877 image->colormap[i].red=ScaleCharToQuantum(pixel);
878 p=PushCharPixel(p,&pixel);
879 image->colormap[i].green=ScaleCharToQuantum(pixel);
880 p=PushCharPixel(p,&pixel);
881 image->colormap[i].blue=ScaleCharToQuantum(pixel);
888 pixel;
892 p=PushShortPixel(MSBEndian,p,&pixel);
893 image->colormap[i].red=ScaleShortToQuantum(pixel);
894 p=PushShortPixel(MSBEndian,p,&pixel);
895 image->colormap[i].green=ScaleShortToQuantum(pixel);
896 p=PushShortPixel(MSBEndian,p,&pixel);
897 image->colormap[i].blue=ScaleShortToQuantum(pixel);
904 pixel;
908 p=PushLongPixel(MSBEndian,p,&pixel);
909 pixel);
910 p=PushLongPixel(MSBEndian,p,&pixel);
911 image->colormap[i].green=ScaleLongToQuantum(pixel);
912 p=PushLongPixel(MSBEndian,p,&pixel);
913 image->colormap[i].blue=ScaleLongToQuantum(pixel);
934 Attach persistent pixel cache.
1144 "pixel-intensity=%s\n",CommandOptionToMnemonic(
1414 pixel;
1416 pixel=ScaleQuantumToLong(image->colormap[i].red);
1417 q=PopLongPixel(MSBEndian,pixel,q);
1418 pixel=ScaleQuantumToLong(image->colormap[i].green);
1419 q=PopLongPixel(MSBEndian,pixel,q);
1420 pixel=ScaleQuantumToLong(image->colormap[i].blue);
1421 q=PopLongPixel(MSBEndian,pixel,q);
1427 pixel;
1429 pixel=ScaleQuantumToShort(image->colormap[i].red);
1430 q=PopShortPixel(MSBEndian,pixel,q);
1431 pixel=ScaleQuantumToShort(image->colormap[i].green);
1432 q=PopShortPixel(MSBEndian,pixel,q);
1433 pixel=ScaleQuantumToShort(image->colormap[i].blue);
1434 q=PopShortPixel(MSBEndian,pixel,q);
1440 pixel;
1442 pixel=(unsigned char) ScaleQuantumToChar(image->colormap[i].red);
1443 q=PopCharPixel(pixel,q);
1444 pixel=(unsigned char) ScaleQuantumToChar(
1446 q=PopCharPixel(pixel,q);
1447 pixel=(unsigned char) ScaleQuantumToChar(image->colormap[i].blue);
1448 q=PopCharPixel(pixel,q);
1457 Initialize persistent pixel cache.