hexagram/include/hexagram/svg.h

18 lines
619 B
C
Raw Normal View History

2024-01-11 17:39:52 -05:00
#ifndef _HEXAGRAM_SVG_H
#define _HEXAGRAM_SVG_H
#include <cairo.h>
int hexagram_svg_render_to_surface(const char *path,
cairo_surface_t *surface,
double width,
double height,
const char *style);
cairo_surface_t *hexagram_svg_render_to_image(const char *path,
double width,
double height,
const char *style);
#endif /* _HEXAGRAM_SVG_H */