load svg with Cairo
Asked Answered
P

1

7

I want to load a SVG file with the Cairo library, do apply some transformations to it. Then I want to display my svg with a glTexture.

But I just find functions which create svg file and not load svg.

Patrick answered 16/1, 2014 at 1:59 Comment(0)
T
13

Cairo itself cannot read SVG files. You need something like librsvg to render SVGs to a Cairo surface.

From a quick look at their API documentation, it looks like you need rsvg_handle_new_from_file() to load a file and something like rsvg_handle_render_cairo() or rsvg_handle_get_pixbuf() to draw the SVG to a Cairo context / to turn the SVG into a GdkPixbuf.

Thirst answered 16/1, 2014 at 8:29 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.