withSaturation method
Create a copy of this HSV color with a different saturation value
Implementation
PdfColorHsv withSaturation(double saturation) {
return PdfColorHsv(hue, saturation, value, alpha);
}
Create a copy of this HSV color with a different saturation value
PdfColorHsv withSaturation(double saturation) {
return PdfColorHsv(hue, saturation, value, alpha);
}