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)?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…