How to display SVG?
问题 I have a simple SVG and want to display it with EDC: <svg width="360" height="360" viewBox="0 0 360 360"> <path d="M180 0 L80 300 L280 300 Z" fill="#ff0000"/> </svg> This is just as simple: My EDC: collections { group { name: "main"; images { vector: "simple.svg"; } parts { vector { "test"; desc { "default"; image.normal: "simple.svg"; } } } } } Target is Tizen 5.5 wearable. Whole screen is black. How can I display this SVG (if I don't want to convert it to PNG)? 回答1: There are two ways to