This commit is contained in:
Adam D. Ruppe 2020-02-20 13:37:14 -05:00
parent 41043f8444
commit 0c65c53f21
1 changed files with 28 additions and 1 deletions

29
svg.d
View File

@ -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;