jsvg
jsvg copied to clipboard
Java SVG renderer
So not an issue but I noticed this lib gonna power the icon rendering of IJ https://github.com/JetBrains/intellij-community/commit/93a8fe3d8376a1ee4b4bcf4cf85d991afc01013d Not sure from where the artifacts comes from though : ``` jar://$MAVEN_REPOSITORY$/com/github/weisj/jsvg/0.1.0-jb.2/jsvg-0.1.0-jb.2.jar ```...
See https://svgwg.org/svg2-draft/coords.html#VectorEffects https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/vector-effect
If specified one can declare the individual "x" location of a character along the text path. This is currently not supported as we can't easily move to an arbitrary position...
These properties are still under heavy development, but we should still think about how to implement them regardless of how they are declared. https://www.w3.org/TR/svg-markers/#MarkerKnockout
Support for - [`marker-segment`](https://www.w3.org/TR/svg-markers/#SegmentMarkers) - [`marker-pattern`](https://www.w3.org/TR/svg-markers/#RepeatingMarkers) - [`marker` shorthand](https://www.w3.org/TR/svg-markers/#MarkerShorthand) this is currently treated as a single marker template.
The 'clip-path' attribute allows to define inline shapes using the grammar for ``. We should support it: https://developer.mozilla.org/en-US/docs/Web/CSS/basic-shape This includes the optional `geometryBox` argument: > **geometry-box:** > An extra information...
Technically all animation attributes are children of the element they apply to. But for memory reasons I don't want to make any `SVGNode` that supports being animated a container element....
Currently text layouts assumes horizontal left to right text layout. Which is definitely not true for all scripts. Eventually we need to support bidirectional text, so handling right to left...
Provide an `ImageIO` plugin for rasterising svg files. Per the spec the `` tag is expected to support svg files and treat them as if they were raster images. This...