mirror of https://github.com/adamdruppe/arsd.git
svg support in image.d
This commit is contained in:
parent
97a4c51715
commit
59d7a30734
2
cgi.d
2
cgi.d
|
@ -9169,6 +9169,8 @@ string contentTypeFromFileExtension(string filename) {
|
||||||
return "text/css";
|
return "text/css";
|
||||||
if(filename.endsWith(".js"))
|
if(filename.endsWith(".js"))
|
||||||
return "application/javascript";
|
return "application/javascript";
|
||||||
|
if(filename.endsWith(".wasm"))
|
||||||
|
return "application/wasm";
|
||||||
if(filename.endsWith(".mp3"))
|
if(filename.endsWith(".mp3"))
|
||||||
return "audio/mpeg";
|
return "audio/mpeg";
|
||||||
return null;
|
return null;
|
||||||
|
|
1
dub.json
1
dub.json
|
@ -99,6 +99,7 @@
|
||||||
"arsd-official:color_base":"*",
|
"arsd-official:color_base":"*",
|
||||||
"arsd-official:png":"*",
|
"arsd-official:png":"*",
|
||||||
"arsd-official:bmp":"*",
|
"arsd-official:bmp":"*",
|
||||||
|
"arsd-official:svg":"*",
|
||||||
"arsd-official:jpeg":"*"
|
"arsd-official:jpeg":"*"
|
||||||
},
|
},
|
||||||
"dflags": [
|
"dflags": [
|
||||||
|
|
2
http2.d
2
http2.d
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
// FIXME: eaders are supposed to be case insensitive. ugh.
|
// FIXME: eaders are supposed to be case insensitive. ugh.
|
||||||
|
|
||||||
|
// FIXME: need timeout controls
|
||||||
|
|
||||||
/++
|
/++
|
||||||
This is version 2 of my http/1.1 client implementation.
|
This is version 2 of my http/1.1 client implementation.
|
||||||
|
|
||||||
|
|
33
image.d
33
image.d
|
@ -10,11 +10,35 @@ public import arsd.bmp;
|
||||||
public import arsd.targa;
|
public import arsd.targa;
|
||||||
public import arsd.pcx;
|
public import arsd.pcx;
|
||||||
public import arsd.dds;
|
public import arsd.dds;
|
||||||
|
public import arsd.svg;
|
||||||
|
|
||||||
import core.memory;
|
import core.memory;
|
||||||
|
|
||||||
static if (__traits(compiles, { import iv.vfs; })) enum ArsdImageHasIVVFS = true; else enum ArsdImageHasIVVFS = false;
|
static if (__traits(compiles, { import iv.vfs; })) enum ArsdImageHasIVVFS = true; else enum ArsdImageHasIVVFS = false;
|
||||||
|
|
||||||
|
MemoryImage readSvg(string filename) {
|
||||||
|
import std.file;
|
||||||
|
return readSvg(cast(const(ubyte)[]) readText(filename));
|
||||||
|
}
|
||||||
|
|
||||||
|
MemoryImage readSvg(const(ubyte)[] rawData) {
|
||||||
|
// Load
|
||||||
|
NSVG* image = nsvgParse(cast(const(char)[]) rawData);
|
||||||
|
|
||||||
|
if(image is null)
|
||||||
|
return null;
|
||||||
|
|
||||||
|
int w = cast(int) image.width + 1;
|
||||||
|
int h = cast(int) image.height + 1;
|
||||||
|
|
||||||
|
NSVGrasterizer rast = nsvgCreateRasterizer();
|
||||||
|
auto img = new TrueColorImage(w, h);
|
||||||
|
rasterize(rast, image, 0, 0, 1, img.imageData.bytes.ptr, w, h, w*4);
|
||||||
|
image.kill();
|
||||||
|
|
||||||
|
return img;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
private bool strEquCI (const(char)[] s0, const(char)[] s1) pure nothrow @trusted @nogc {
|
private bool strEquCI (const(char)[] s0, const(char)[] s1) pure nothrow @trusted @nogc {
|
||||||
if (s0.length != s1.length) return false;
|
if (s0.length != s1.length) return false;
|
||||||
|
@ -38,6 +62,7 @@ enum ImageFileFormat {
|
||||||
Gif, /// we can't load it yet, but we can at least detect it
|
Gif, /// we can't load it yet, but we can at least detect it
|
||||||
Pcx, /// can load 8BPP and 24BPP pcx images
|
Pcx, /// can load 8BPP and 24BPP pcx images
|
||||||
Dds, /// can load ARGB8888, DXT1, DXT3, DXT5 dds images (without mipmaps)
|
Dds, /// can load ARGB8888, DXT1, DXT3, DXT5 dds images (without mipmaps)
|
||||||
|
Svg, /// will rasterize simple svg images
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -59,6 +84,7 @@ public ImageFileFormat guessImageFormatFromExtension (const(char)[] filename) {
|
||||||
if (strEquCI(ext, "tga")) return ImageFileFormat.Tga;
|
if (strEquCI(ext, "tga")) return ImageFileFormat.Tga;
|
||||||
if (strEquCI(ext, "pcx")) return ImageFileFormat.Pcx;
|
if (strEquCI(ext, "pcx")) return ImageFileFormat.Pcx;
|
||||||
if (strEquCI(ext, "dds")) return ImageFileFormat.Dds;
|
if (strEquCI(ext, "dds")) return ImageFileFormat.Dds;
|
||||||
|
if (strEquCI(ext, "svg")) return ImageFileFormat.Svg;
|
||||||
return ImageFileFormat.Unknown;
|
return ImageFileFormat.Unknown;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -206,6 +232,11 @@ public ImageFileFormat guessImageFormatFromMemory (const(void)[] membuf) {
|
||||||
}
|
}
|
||||||
if (guessPcx()) return ImageFileFormat.Pcx;
|
if (guessPcx()) return ImageFileFormat.Pcx;
|
||||||
|
|
||||||
|
// kinda lame svg detection but don't want to parse too much of it here
|
||||||
|
if (buf.length > 6 && buf.ptr[0] == '<') {
|
||||||
|
return ImageFileFormat.Svg;
|
||||||
|
}
|
||||||
|
|
||||||
// dunno
|
// dunno
|
||||||
return ImageFileFormat.Unknown;
|
return ImageFileFormat.Unknown;
|
||||||
}
|
}
|
||||||
|
@ -242,6 +273,7 @@ public MemoryImage loadImageFromFile(T:const(char)[]) (T filename) {
|
||||||
case ImageFileFormat.Gif: throw new Exception("arsd has no GIF loader yet");
|
case ImageFileFormat.Gif: throw new Exception("arsd has no GIF loader yet");
|
||||||
case ImageFileFormat.Tga: return loadTga(filename);
|
case ImageFileFormat.Tga: return loadTga(filename);
|
||||||
case ImageFileFormat.Pcx: return loadPcx(filename);
|
case ImageFileFormat.Pcx: return loadPcx(filename);
|
||||||
|
case ImageFileFormat.Svg: static if (is(T == string)) return readSvg(filename); else return readSvg(filename.idup);
|
||||||
case ImageFileFormat.Dds:
|
case ImageFileFormat.Dds:
|
||||||
static if (ArsdImageHasIVVFS) {
|
static if (ArsdImageHasIVVFS) {
|
||||||
auto fl = VFile(filename);
|
auto fl = VFile(filename);
|
||||||
|
@ -269,6 +301,7 @@ public MemoryImage loadImageFromMemory (const(void)[] membuf) {
|
||||||
case ImageFileFormat.Gif: throw new Exception("arsd has no GIF loader yet");
|
case ImageFileFormat.Gif: throw new Exception("arsd has no GIF loader yet");
|
||||||
case ImageFileFormat.Tga: return loadTgaMem(membuf);
|
case ImageFileFormat.Tga: return loadTgaMem(membuf);
|
||||||
case ImageFileFormat.Pcx: return loadPcxMem(membuf);
|
case ImageFileFormat.Pcx: return loadPcxMem(membuf);
|
||||||
|
case ImageFileFormat.Svg: return readSvg(cast(const(ubyte)[]) membuf);
|
||||||
case ImageFileFormat.Dds: return ddsLoadFromMemory(membuf);
|
case ImageFileFormat.Dds: return ddsLoadFromMemory(membuf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
1
script.d
1
script.d
|
@ -1,6 +1,7 @@
|
||||||
/*
|
/*
|
||||||
|
|
||||||
FIXME: i kinda do want a catch type filter e.g. catch(Exception f)
|
FIXME: i kinda do want a catch type filter e.g. catch(Exception f)
|
||||||
|
and perhaps overloads
|
||||||
|
|
||||||
FIXME: I also kinda want implicit construction of structs at times.
|
FIXME: I also kinda want implicit construction of structs at times.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue