Home | History | Annotate | Download | only in MagickCore

Lines Matching refs:high

1150 %  this method to take two target pixels (one low and one high) and all the
1157 % const PixelInfo *low,const PixelInfo *high,const Quantum opacity,
1166 % o high: the high target color.
1176 const PixelInfo *low,const PixelInfo *high,const Quantum opacity,
1195 assert(high != (PixelInfo *) NULL);
1239 match=((pixel.red >= low->red) && (pixel.red <= high->red) &&
1240 (pixel.green >= low->green) && (pixel.green <= high->green) &&
1241 (pixel.blue >= low->blue) && (pixel.blue <= high->blue)) ? MagickTrue :