mirror of https://github.com/adamdruppe/arsd.git
new modules from ketmar
This commit is contained in:
parent
45eb5d13c9
commit
856ce49092
38
color.d
38
color.d
|
@ -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
|
||||
|
|
|
@ -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;
|
Loading…
Reference in New Issue