almosr / android-svg-code-render

Convert SVG files into Java source and use it in your Android app
Apache License 2.0
24 stars 3 forks source link

Bitmap masking is not supported #62

Open almosr opened 8 years ago

almosr commented 8 years ago

Bitmap masks are depending on Bitmap.getPixels() and Bitmap.setPixels() methods which are not simulated yet.

These two methods are depending on convert-time pixel processing which is not possible currently. A possible solution would be rewriting this part of the original library and move the whole processing to the source code output.