jsvg icon indicating copy to clipboard operation
jsvg copied to clipboard

Java SVG renderer

Results 43 jsvg issues
Sort by recently updated
recently updated
newest added

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

enhancement

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...

bug
enhancement

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

enhancement

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.

enhancement

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...

enhancement
good first issue

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....

enhancement
question

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...

enhancement

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...

enhancement
good first issue

It's relevant for e.g. masks

enhancement