From 1c1f185142f7be5888c05ef3f43b23cf5dbd8d67 Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Sun, 7 Mar 2021 11:58:01 +0900 Subject: [PATCH] Update README.md updated svg part. --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b907c58c..0a12d7fd 100644 --- a/README.md +++ b/README.md @@ -141,7 +141,15 @@ This path drawing result shows like this.

-Next, this code snippet shows you how to draw SVG image. +## SVG (Scalable Vector Graphics) + +ThorVG supports SVG rendering through its own SVG interpreter. It basically aims to satisfy with [SVG Tiny Specification](https://www.w3.org/TR/SVGTiny12/) for the lightweight system such as embeded. Most cases ThorVG supports the SVG spec fully but some partial SVG features were not supported officially yet. Next list shows the unsupported features by ThorVG. + + - CSS Styles + - Filters + - Images + +Next code snippet shows you how to draw SVG image using ThorVG. ```cpp auto picture = tvg::Picture::gen(); //generate a picture