Lines Matching refs:pixel
294 pixel;
296 GetPixelInfo(wand->image,&pixel);
297 pixel.colorspace=sRGBColorspace;
298 pixel.alpha_trait=packet->alpha != OpaqueAlpha ? BlendPixelTrait :
300 pixel.red=(double) packet->red;
301 pixel.green=(double) packet->green;
302 pixel.blue=(double) packet->blue;
303 pixel.alpha=(double) packet->alpha;
304 GetColorTuple(&pixel,MagickTrue,tuple);
649 % PointMethod: Select the target pixel
650 % ReplaceMethod: Select any pixel that matches the target pixel.
651 % FloodfillMethod: Select the target pixel and matching neighbors.
652 % FillToBorderMethod: Select the target pixel and neighbors not matching
940 % PointMethod: Recolors the target pixel
941 % ReplaceMethod: Recolor any pixel that matches the target pixel.
2516 pixel;
2533 GetPixelInfo(wand->image,&pixel);
2560 pixel.alpha_trait=CurrentContext->fill.alpha != OpaqueAlpha ?
2562 pixel=CurrentContext->fill;
2563 GetColorTuple(&pixel,MagickTrue,value);
2628 pixel.alpha_trait=CurrentContext->stroke.alpha != OpaqueAlpha ?
2630 pixel=CurrentContext->stroke;
2631 GetColorTuple(&pixel,MagickTrue,value);
2722 pixel.alpha_trait=CurrentContext->undercolor.alpha != OpaqueAlpha ?
2724 pixel=CurrentContext->undercolor;
2725 GetColorTuple(&pixel,MagickTrue,value);