Paul LeBeau
Paul LeBeau
Typo spotted? > 8 and 16 (which are represented on the wire as 0x10 and 0x20) Should be 0x08 and 0x10?
Sorry. Please close this. It was the result of a late night brain fail on my part.
Someone else asked for a port of AndroidSVG suitable for use with JavaFX. It's something I have been considering. How are you finding Salamander in terms of how complete its...
Yes. I have done a lot of work on it, but it is not near to being ready for release yet.
If you are using the `SVGImageView` class, then no. It is based on a normal `ImageView` and creates a `PictureDrawable` from the SVG. Unfortunately, `ImageView` does not support colour filters...
Then it sounds like you probably have to go with the CSS option. AndroidSVG doesn't currently have a way to set a ColorFilter when rendering directly to a Canvas.
What do you mean by "distorted"? Please post a screenshot, and/or some example code.
How big is the Bitmap you are drawing the Picture to? Is `drawable2Bitmap()` your own code? If you are creating a Bitmap, you don't need to create a `Picture` first....
No. There isn't a way to do it at the moment. But you could do it yourself by [checking the dark mode setting](https://stackoverflow.com/questions/55787035/is-there-an-api-to-detect-which-theme-the-os-is-using-dark-or-light-or-other) and passing different CSS to the `renderToX()`...
We don't currently support `@font-face`, but I could add it to the TODO list if you want. However you can use custom fonts now by using `SimpleAssetResolver`. 1. Add the...