I imported an image in the designer into a label. The image was built from SVG and exported to PNG. For some reason, the result is not being the best, because for no apparent reason the image appears jagged.
Actually I need to programmatically import it, but I can't understand the correct way to do it.
Are there any directives to avoid the knurling ? How do I do that
Thanks in advance
If you export an SVG as an png the resulting image should have 100% precision/Quality.
Exporting it as 1024x1024 Image will result in an 1024x1024 Image with 100% precision/Quality.
So the real question is:
In what size you did exported the SVG?
In what size you are USING the png in your app?
If you export an SVG as an png the resulting image should have 100% precision/Quality.
Exporting it as 1024x1024 Image will result in an 1024x1024 Image with 100% precision/Quality.
So the real question is:
In what size you did exported the SVG?
In what size you are USING the png in your app?