Skip to content

Commit 1291295

Browse files
BATIK-1285: Set offset to 0 if missing in stop tag
1 parent fbf2bbe commit 1291295

File tree

3 files changed

+58
-7
lines changed

3 files changed

+58
-7
lines changed

batik-bridge/src/main/java/org/apache/batik/bridge/AbstractSVGGradientElementBridge.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -313,9 +313,7 @@ public Stop createStop(BridgeContext ctx,
313313

314314
String s = stopElement.getAttributeNS(null, SVG_OFFSET_ATTRIBUTE);
315315
if (s.length() == 0) {
316-
throw new BridgeException
317-
(ctx, stopElement, ERR_ATTRIBUTE_MISSING,
318-
new Object[] {SVG_OFFSET_ATTRIBUTE});
316+
s = "0";
319317
}
320318
float offset;
321319
try {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/*
2+
3+
Licensed to the Apache Software Foundation (ASF) under one or more
4+
contributor license agreements. See the NOTICE file distributed with
5+
this work for additional information regarding copyright ownership.
6+
The ASF licenses this file to You under the Apache License, Version 2.0
7+
(the "License"); you may not use this file except in compliance with
8+
the License. You may obtain a copy of the License at
9+
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
12+
Unless required by applicable law or agreed to in writing, software
13+
distributed under the License is distributed on an "AS IS" BASIS,
14+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
See the License for the specific language governing permissions and
16+
limitations under the License.
17+
18+
*/
19+
package org.apache.batik.svg;
20+
21+
import java.io.ByteArrayInputStream;
22+
import java.io.ByteArrayOutputStream;
23+
import org.apache.batik.transcoder.TranscoderInput;
24+
import org.apache.batik.transcoder.TranscoderOutput;
25+
import org.apache.batik.transcoder.image.PNGTranscoder;
26+
import org.junit.Assert;
27+
import org.junit.Test;
28+
29+
/**
30+
* Test class for verifying correct handling of SVG gradient stops without an 'offset' attribute.
31+
* *
32+
* @version $Id$
33+
*/
34+
public class SVGGradietElementBridgeOffsetAttributeTestCase {
35+
@Test
36+
public void testNoOffset() throws Exception {
37+
String svgContent = "<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'>" +
38+
"<defs>" +
39+
"<linearGradient id='gradient'>" +
40+
"<stop stop-color='red'/>" + // No offset attribute
41+
"<stop offset='100%' stop-color='blue'/>" +
42+
"</linearGradient>" +
43+
"</defs>" +
44+
"<rect width='100%' height='100%' fill='url(#gradient)' />" +
45+
"</svg>";
46+
PNGTranscoder transcoder = new PNGTranscoder();
47+
TranscoderInput input = new TranscoderInput(new ByteArrayInputStream(svgContent.getBytes()));
48+
ByteArrayOutputStream ostream = new ByteArrayOutputStream();
49+
TranscoderOutput output = new TranscoderOutput(ostream);
50+
transcoder.transcode(input, output);
51+
Assert.assertNotNull(ostream.toByteArray());
52+
}
53+
}

test-resources/org/apache/batik/bridge/unitTesting.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -418,12 +418,12 @@
418418
<property name="ExpectedErrorCode" class="java.lang.String"
419419
value="attribute.malformed" />
420420
</test>
421-
<test id="bridge/error/linearGradient-missing-offset">
421+
<!--<test id="bridge/error/linearGradient-missing-offset">
422422
<property name="ExpectedExceptionClass" class="java.lang.String"
423423
value="org.apache.batik.bridge.BridgeException" />
424424
<property name="ExpectedErrorCode" class="java.lang.String"
425425
value="attribute.missing" />
426-
</test>
426+
</test>-->
427427
<test id="bridge/error/linearGradient-spreadMethod-invalid">
428428
<property name="ExpectedExceptionClass" class="java.lang.String"
429429
value="org.apache.batik.bridge.BridgeException" />
@@ -515,12 +515,12 @@
515515
<property name="ExpectedErrorCode" class="java.lang.String"
516516
value="attribute.malformed" />
517517
</test>
518-
<test id="bridge/error/radialGradient-missing-offset">
518+
<!--<test id="bridge/error/radialGradient-missing-offset">
519519
<property name="ExpectedExceptionClass" class="java.lang.String"
520520
value="org.apache.batik.bridge.BridgeException" />
521521
<property name="ExpectedErrorCode" class="java.lang.String"
522522
value="attribute.missing" />
523-
</test>
523+
</test>-->
524524
<test id="bridge/error/radialGradient-r-negative">
525525
<property name="ExpectedExceptionClass" class="java.lang.String"
526526
value="org.apache.batik.bridge.BridgeException" />

0 commit comments

Comments
 (0)