From 0c65c53f21c65dae2994b4c5e165fc74313a6f84 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 20 Feb 2020 13:37:14 -0500 Subject: [PATCH] maor dox --- svg.d | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/svg.d b/svg.d index f6adba0..4e81875 100644 --- a/svg.d +++ b/svg.d @@ -73,11 +73,38 @@ // Allocate memory for image ubyte* img = malloc(w*h*4); // Rasterize - nsvgRasterize(rast, image, 0, 0, 1, img, w, h, w*4); + rasterize(rast, image, 0, 0, 1, img, w, h, w*4); // Delete image.kill(); --- + + To turn a SVG into a png: + --- + import arsd.svg; + import arsd.png; + + void main() { + // Load + NSVG* image = nsvgParseFromFile("test.svg", "px", 96); + + int w = 200; + int h = 200; + + NSVGrasterizer rast = nsvgCreateRasterizer(); + // Allocate memory for image + auto img = new TrueColorImage(w, h); + // Rasterize + rasterize(rast, image, 0, 0, 1, img.imageData.bytes.ptr, w, h, w*4); + + // Delete + image.kill(); + + writePng("test.png", img); + + + } + --- */ module arsd.svg;