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

https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateMotion

enhancement

https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/calcMode

enhancement

Isolated groups/elements need to be first painted to an offscreen buffer and then composed onto the viewport. This is needed for example if an element has non-trivial opacity to ensure...

bug
enhancement

The [AttributeNode.preprocessAttributes](https://github.com/weisJ/jsvg/blob/3914409f231f153102b9016aadc5f8bb1b44d51c/jsvg/src/main/java/com/github/weisj/jsvg/parser/impl/AttributeNode.java#L128) method has the following code: ```java private static void preprocessAttributes(@NotNull Map attributes, @NotNull Map styleAttributes) { String styleStr = attributes.get("style"); if (styleStr != null && !isBlank(styleStr)) { String[]...

I am just about to migrate from SVG Salamander to jsvg, but I have a kinda hard time to solve "at runtime" specific tasks. I do have some template SVGs...

enhancement

[SVG](https://mermaid.ink/svg/pako:eNpVUltv2jAU_ivW2WuKioKbkIdNLUkL7TZVpaq0OTy45CRYS2xkO6ws8N8XHDMxP1j-buf41sFaFQgJlLX6vd5wbclrmkvSj1u2tD1ekaurz-SuS3EtjFCSPCsh7XHw3J3Eww80BzJjz1qt0RiScstXl_p3dSApW_4SW-I9QlbeMXPlM_bGa1Fwi-QFTVtb4-XUyffsq6pItkNpPZ85_qHzbuLiX_yuHlxXRx3InC35DolVbl_v3ODq0rWQu8G3YHMuixpJprXS3nPv2jyyTBaemQ_MABYOPLEXtHp_Pps3Pg33NoBhNnbf178lpajr5BOOS1ripfLolTJEWtJLZXFWSnzH_zLzc7W4pBhDAJUWBSRWtxhAg7rhJwjdKZOD3WCDOST9UmJrNa9zyOWxj225_KlUc05q1VYbSEpemx6129PTpIJXmjf_WI2yQD1TrbSQxJGrAUkHH5CE1-FoPI2jMKQTSqM4vAlgD8kkHo3jaBLRcUSn0xs6OQbwx3W9HsURDQALYZX-NnxJ9zOPfwEaEc0c) ```svg @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");#mermaid-svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#000000;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#mermaid-svg .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#mermaid-svg .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#mermaid-svg .error-icon{fill:#552222;}#mermaid-svg .error-text{fill:#552222;stroke:#552222;}#mermaid-svg .edge-thickness-normal{stroke-width:1px;}#mermaid-svg .edge-thickness-thick{stroke-width:3.5px;}#mermaid-svg .edge-pattern-solid{stroke-dasharray:0;}#mermaid-svg .edge-thickness-invisible{stroke-width:0;fill:none;}#mermaid-svg .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-svg .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-svg .marker{fill:#666;stroke:#666;}#mermaid-svg .marker.cross{stroke:#666;}#mermaid-svg svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;}#mermaid-svg p{margin:0;}#mermaid-svg .label{font-family:"trebuchet ms",verdana,arial,sans-serif;color:#000000;}#mermaid-svg...

enhancement

Hello, with latest version Jlink fails to build custom image with following error. ``` Error: Packages that are exported or open in com.github.weisj.jsvg are not present: [com.github.weisj.jsvg.provider] Packages that are...

bug

Hey Jannis, Here is the second version of the JavaFX output implementation, I've created a fresh pull request to resolve the re-basing issues with the master branch and to show...

Hi, Jannis! we have issues while rendering gradient images using jsvg: the gradient looks stepped. We compared rendering of the same image with JCEF (which is literally Chrome) and it...

enhancement

While testing the library I wrote some basic implementations of Output for Skija / JavaFX, I thought I'd mention a few things I found tricky to achieve with the current...

enhancement