We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b9c186 commit e99dbe9Copy full SHA for e99dbe9
svg/src/main/java/com/itextpdf/svg/renderers/impl/PathSvgNodeRenderer.java
@@ -248,7 +248,7 @@ private Collection<IPathShape> getShapes() {
248
List<IPathShape> shapes = new ArrayList<>();
249
250
for (String parsedResult : parsedResults) {
251
- String[] pathProperties = parsedResult.split(SPACE_CHAR);
+ String[] pathProperties = parsedResult.split(" +");
252
IPathShape previousShape = shapes.size() == 0 ? null : shapes.get(shapes.size() - 1);
253
List<IPathShape> operatorShapes = processPathOperator(pathProperties, previousShape);
254
shapes.addAll(operatorShapes);
0 commit comments