summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox')
-rw-r--r--src/main/java/com/kitfox/svg/LinearGradient.java11
-rw-r--r--src/main/java/com/kitfox/svg/Stop.java4
2 files changed, 8 insertions, 7 deletions
diff --git a/src/main/java/com/kitfox/svg/LinearGradient.java b/src/main/java/com/kitfox/svg/LinearGradient.java
index 81be3d5..ab48052 100644
--- a/src/main/java/com/kitfox/svg/LinearGradient.java
+++ b/src/main/java/com/kitfox/svg/LinearGradient.java
@@ -132,13 +132,14 @@ public class LinearGradient extends Gradient {
viewXform.translate(bounds.getX(), bounds.getY());
//This is a hack to get around shapes that have a width or height of 0. Should be close enough to the true answer.
- double width = bounds.getWidth();
- double height = bounds.getHeight();
- if (width == 0) width = 1;
- if (height == 0) height = 1;
+ double width = Math.max(1, bounds.getWidth());
+ double height = Math.max(1, bounds.getHeight());
viewXform.scale(width, height);
- viewXform.concatenate(gradientTransform);
+ if (gradientTransform != null)
+ {
+ viewXform.concatenate(gradientTransform);
+ }
paint = new com.kitfox.svg.batik.LinearGradientPaint(
pt1,
diff --git a/src/main/java/com/kitfox/svg/Stop.java b/src/main/java/com/kitfox/svg/Stop.java
index b3990c6..3cd6145 100644
--- a/src/main/java/com/kitfox/svg/Stop.java
+++ b/src/main/java/com/kitfox/svg/Stop.java
@@ -104,7 +104,7 @@ public class Stop extends SVGElement {
}
}
- if (getPres(sty.setName("stop-color")))
+ if (getStyle(sty.setName("stop-color")))
{
Color newVal = sty.getColorValue();
if (newVal != color)
@@ -114,7 +114,7 @@ public class Stop extends SVGElement {
}
}
- if (getPres(sty.setName("stop-opacity")))
+ if (getStyle(sty.setName("stop-opacity")))
{
float newVal = sty.getFloatValue();
if (newVal != opacity)