Thor Vector Graphics is a lightweight portable library used for drawing vector-based scenes and animations including SVG and Lottie. It can be freely utilized across various software platforms and applications to visualize graphical contents.
Find a file
2020-09-08 20:29:24 +09:00
inc common initializer: don't try initialize engine duplicatedly. 2020-08-21 15:56:45 +09:00
packaging replace license from Apache 2.0 to MIT 2020-08-13 16:53:38 +09:00
pc renamed project name tizenvg => thorvg 2020-06-25 13:57:41 +09:00
res README: introduced our new logo. 2020-09-07 14:09:31 +09:00
src changed file permission 2020-09-08 20:29:24 +09:00
test test: +++ missing test file. 2020-09-05 19:05:17 +09:00
.gitignore common: fix context corruption among the multiple canvases. 2020-09-05 18:55:51 +09:00
AUTHORS updated AUTHORS 2020-08-20 17:52:11 +09:00
LICENSE replace license from Apache 2.0 to MIT 2020-08-13 16:53:38 +09:00
meson.build replace license from Apache 2.0 to MIT 2020-08-13 16:53:38 +09:00
meson_options.txt disable gl_engine in default. 2020-08-14 17:45:13 +09:00
README.md Update README.md 2020-09-08 12:27:30 +09:00
thorvg.manifest renamed project name tizenvg => thorvg 2020-06-25 13:57:41 +09:00

ThorVG

ThorVG is a platform independent lightweight standalone C++ library for drawing vector-based shapes and SVG.

Contents

Building ThorVG

thorvg supports meson build system.

Meson Build

install meson and ninja if not already installed.

Run meson to configure ThorVG.

meson build

Run ninja to build & install ThorVG.

ninja -C build install

Back to contents

Quick Start

ThorVG renders vector shapes on a given canvas buffer.

You can initialize ThorVG engine first:

tvg::Initializer::init(tvg::CanvasEngine::Sw, 0);   //engine method, thread count

You can prepare a empty canvas for drawing on it.

static uint32_t buffer[WIDTH * HEIGHT];          //canvas target buffer

auto canvas = tvg::SwCanvas::gen();              //generate a canvas
canvas->target(buffer, WIDTH, WIDTH, HEIGHT);    //stride, w, h

Next you can draw shapes onto the canvas.

auto shape = tvg::Shape::gen();             //generate a shape
shape->appendRect(0, 0, 200, 200, 0, 0);    //x, y, w, h, rx, ry
shape->appendCircle(400, 400, 100, 100);    //cx, cy, radiusW, radiusH
shape->fill(255, 255, 0, 255);              //r, g, b, a

canvas->push(move(shape));                  //push shape drawing command

Begin rendering & finish it at a particular time.

canvas->draw();
canvas->sync();

Now you can acquire the rendered image in buffer memory.

Lastly, terminate the engine after usage.

tvg::Initializer::term(tvg::CanvasEngine::Sw);

Back to contents

Issues or Feature Requests?

For immidiate assistant or support please reach us in Gitter