diff options
author | Sertonix <sertonix@posteo.net> | 2024-07-28 01:04:53 +0200 |
---|---|---|
committer | Daniel Eklöf <daniel@ekloef.se> | 2024-07-28 17:00:44 +0200 |
commit | d6c4779f8b8c7dd74cfffea3d27ecc6cc50ab53a (patch) | |
tree | 4218e286434c2df942df86ba51b0286b1e6ecae1 /svg.h | |
parent | a1f26161cf68e7a74fc83f0a605d16732637b5d7 (diff) | |
download | wbg-d6c4779f8b8c7dd74cfffea3d27ecc6cc50ab53a.tar.gz |
svg: rasterize with output resolution
Diffstat (limited to 'svg.h')
-rw-r--r-- | svg.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,9 @@ #pragma once #include <stdio.h> +#include <stdbool.h> #include <pixman.h> -pixman_image_t *svg_load(FILE *fp, const char *path); +bool svg_load(FILE *fp, const char *path); +pixman_image_t *svg_render(const int width, const int height); +void svg_free(); |