17 lines
619 B
C
17 lines
619 B
C
#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 */
|