Searched defs:lightness (Results 1 - 5 of 5) sorted by relevance

/external/ImageMagick/Magick++/lib/
H A DColor.cpp617 lightness, local
626 &lightness); local
630 ConvertHSLToRGB(hue,saturation,lightness,&red,&green,&blue);
641 lightness, local
645 &lightness); local
650 void Magick::ColorHSL::lightness (const double lightness_) function in class:Magick::ColorHSL
654 lightness, local
663 &lightness); local
665 lightness=lightness_;
667 ConvertHSLToRGB(hue,saturation,lightness,
674 double Magick::ColorHSL::lightness (void) const function in class:Magick::ColorHSL
678 lightness, local
682 &lightness); local
691 lightness, local
700 &lightness); local
715 lightness, local
719 &lightness); local
[all...]
/external/ImageMagick/MagickCore/
H A Dgem.c452 % ConvertHSLToRGB() transforms a (hue, saturation, lightness) to a (red,
458 % const double lightness,double *red,double *green,double *blue)
462 % o hue, saturation, lightness: A double value representing a argument
469 const double lightness,double *red,double *green,double *blue)
484 if (lightness <= 0.5)
485 c=2.0*lightness*saturation;
487 c=(2.0-2.0*lightness)*saturation;
488 min=lightness-0.5*c;
1098 % lightness) triple.
1103 % const double blue,double *hue,double *saturation,double *lightness)
1099 ConvertRGBToHSL(const double red,const double green, const double blue,double *hue,double *saturation,double *lightness) argument
[all...]
H A Denhance.c2936 % modulation is lightness, saturation, and hue. For HWB, use blackness,
3052 lightness,
3056 Increase or decrease color lightness, saturation, or hue.
3058 ConvertRGBToHSL(*red,*green,*blue,&hue,&saturation,&lightness);
3065 lightness*=0.01*percent_lightness;
3066 ConvertHSLToRGB(hue,saturation,lightness,red,green,blue);
3035 lightness, local
H A Dfx.c1420 (LocaleCompare(p,"lightness") != 0))
1653 lightness, local
1657 &lightness);
1699 if (LocaleCompare(symbol,"lightness") == 0)
1703 lightness, local
1707 &lightness);
1708 return(lightness);
1793 lightness, local
1797 &lightness);
2707 if (LocaleCompare(expression,"lightness")
[all...]
/external/ImageMagick/MagickWand/
H A Dpixel-wand.c1083 % double *lightness)
1089 % o hue,saturation,lightness: Return the pixel hue, saturation, and
1094 double *saturation,double *lightness)
1102 hue,saturation,lightness);
2012 % const double saturation,const double lightness)
2018 % o hue,saturation,lightness: Return the pixel hue, saturation, and
2023 const double saturation,const double lightness)
2034 ConvertHSLToRGB(hue,saturation,lightness,&red,&green,&blue);
1063 PixelGetHSL(const PixelWand *wand,double *hue, double *saturation,double *lightness) argument
1966 PixelSetHSL(PixelWand *wand,const double hue, const double saturation,const double lightness) argument

Completed in 902 milliseconds