new modules from ketmar

This commit is contained in:
Adam D. Ruppe 2016-07-31 09:00:20 -04:00
parent 45eb5d13c9
commit 856ce49092
3 changed files with 3477 additions and 1 deletions

38
color.d
View File

@ -775,8 +775,44 @@ interface MemoryImage {
/// Get image pixel. Slow, but returns valid RGBA color (completely transparent for off-image pixels).
Color getPixel(int x, int y) const;
// Set image pixel.
/// Set image pixel.
void setPixel(int x, int y, in Color clr);
/// Load image from file. This will import arsd.png and arsd.jpeg to do the actual work, and cost nothing if you don't use it.
static MemoryImage fromImage(T : const(char)[]) (T filename) @trusted {
static if (__traits(compiles, {import arsd.jpeg;})) {
// yay, we have jpeg loader here, try it!
import arsd.jpeg;
bool goodJpeg = false;
try {
int w, h, c;
goodJpeg = detect_jpeg_image_from_file(filename, w, h, c);
if (goodJpeg && (w < 1 || h < 1)) goodJpeg = false;
} catch (Exception) {} // sorry
if (goodJpeg) return readJpeg(filename);
enum HasJpeg = true;
} else {
enum HasJpeg = false;
}
static if (__traits(compiles, {import arsd.png;})) {
// yay, we have png loader here, try it!
import arsd.png;
static if (is(T == string)) {
return readPng(filename);
} else {
// std.stdio sux!
return readPng(filename.idup);
}
enum HasPng = true;
} else {
enum HasPng = false;
}
static if (HasJpeg || HasPng) {
throw new Exception("cannot load image '"~filename.idup~"' in unknown format");
} else {
static assert(0, "please provide 'arsd.png', 'arsd.jpeg' or both to load images!");
}
}
}
/// An image that consists of indexes into a color palette. Use getAsTrueColorImage() if you don't care about palettes

6
image.d Normal file
View File

@ -0,0 +1,6 @@
/// this file just imports all available image decoders
module arsd.image;
public import arsd.color;
public import arsd.png;
public import arsd.jpeg;

3434
jpeg.d Normal file

File diff suppressed because it is too large Load Diff