echosvg icon indicating copy to clipboard operation
echosvg copied to clipboard

SVG implementation in the Java™ Language, fork of Apache Batik, supporting level 4 selectors and colors.

Results 9 echosvg issues
Sort by recently updated
recently updated
newest added

The Apache xmlgraphics-commons project has merged a commit which sets an automatic module name of `org.apache.xmlgraphics.commons`, different to the one currently being assumed by this project, which is based on...

dependencies

I don't know if you've seen these, but it's a very good SVG test suite: https://github.com/canvg/canvg/tree/master/test/svgs

tests

The test `SamplesRenderingTest.testScriptEnclosureList2()` (the rendering of `samples/tests/spec/scripting/enclosureList2.svg`) fails. The expected result (according to old Batik tests) is on the left: ![enclosureList2_cmp](https://user-images.githubusercontent.com/38894633/120903349-ff1bff00-c645-11eb-8724-86a15cbcdb1c.png) This issue is opened to investigate the failure. As...

spec compliance
tests

The test `SamplesRenderingTest.testTextDecoration2()` (which renders `samples/tests/spec/text/textDecoration2.svg`) fails. The expected result is on the left: ![textDecoration2_cmp](https://user-images.githubusercontent.com/38894633/120903871-14def380-c649-11eb-897c-294d149ebe69.png) The reason of the failure is that the two images are rendering a different font:...

good first issue
tests

The security and privacy aspects of this project could be improved in several fronts: 1) Enable optional resource limits intended for the processing of untrusted documents. 2) Identify potentially insecure...

security

This project has a number of `public` and `protected` fields and methods that aren't really expected to be used by downstream software. This was very common in old Java code,...

The APIs of this project were designed around the [`SVGDocument`](https://github.com/css4j/web-apis/blob/e11d3f054c130167ad0bcd0d72dbbb3f02cc1939/svgom-api/src/main/java/org/w3c/dom/svg/SVGDocument.java), but the current SVG specification uses the concept of a [SVG document fragment](https://www.w3.org/TR/SVG2/struct.html#TermSVGDocumentFragment) instead. The current code assumes that every...

enhancement

The ConvolveMatrix test (rendering of `samples/tests/spec/filters/feConvolveMatrix.svg` in `SamplesRenderingTest.testFilterFeConvolveMatrix()`) fails with an exception: ``` java.awt.image.ImagingOpException: Unable to convolve src image ``` This bug is the same as [BATIK-1280](https://issues.apache.org/jira/browse/BATIK-1280). The problem happens...

bug

The filter extension attributes test (rendering of `samples/tests/spec12/filters/filterRegion.svg`) fails, expected result is at the left: ![filterRegion_cmp](https://user-images.githubusercontent.com/38894633/120900983-456a6180-c638-11eb-9eae-827d52cb2886.png) It is not drawing the `line` elements without the filter. And both Chrome and...

spec compliance