Browse Source

clamp (h)sl values

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1695183 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_13_FINAL
Andreas Beeker 8 years ago
parent
commit
80d0e74507
1 changed files with 4 additions and 9 deletions
  1. 4
    9
      src/java/org/apache/poi/sl/draw/DrawPaint.java

+ 4
- 9
src/java/org/apache/poi/sl/draw/DrawPaint.java View File

@@ -356,15 +356,10 @@ public class DrawPaint {
* @returns the RGB Color object
*/
private static Color HSL2RGB(double h, double s, double l, double alpha) {
if (s <0.0f || s > 100.0f) {
String message = "Color parameter outside of expected range - Saturation: " + s;
throw new IllegalArgumentException( message );
}
if (l <0.0f || l > 100.0f) {
String message = "Color parameter outside of expected range - Luminance: " + l;
throw new IllegalArgumentException( message );
}
// we clamp the values, as it possible to come up with more than 100% sat/lum
// (see links in applyColorTransform() for more info)
s = Math.max(0, Math.min(100, s));
l = Math.max(0, Math.min(100, l));
if (alpha <0.0f || alpha > 1.0f) {
String message = "Color parameter outside of expected range - Alpha: " + alpha;

Loading…
Cancel
Save