pixelSetHSL method
PixelSetHSL() sets the normalized HSL color of the pixel wand.
Implementation
void pixelSetHSL({
required double hue,
required double saturation,
required double lightness,
}) =>
_magickWandBindings.PixelSetHSL(
_wandPtr,
hue,
saturation,
lightness,
);