From 03fb5aa82b94750fb2e35cec71b16159bd84cd4c Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 12 Aug 2024 12:34:42 -0400 Subject: [PATCH] svg preprocessor to make use kinda work sometimes --- image.d | 3 +++ 1 file changed, 3 insertions(+) diff --git a/image.d b/image.d index 5e71451..86a087c 100644 --- a/image.d +++ b/image.d @@ -14,6 +14,8 @@ +/ module arsd.image; +// might dynamically load this thing: https://developers.google.com/speed/webp/docs/api + public import arsd.color; public import arsd.png; public import arsd.jpeg; @@ -36,6 +38,7 @@ MemoryImage readSvg(string filename) { MemoryImage readSvg(const(ubyte)[] rawData) { // Load + // NSVG* image = nsvgParseWithPreprocessor(cast(const(char)[]) rawData); NSVG* image = nsvgParse(cast(const(char)[]) rawData); if(image is null)