ketmar: rename ImageFormat to ImageFileFormat for less annoying minor conflict with sdpy

This commit is contained in:
Adam D. Ruppe 2017-03-25 16:01:58 -04:00
parent 8d0db3127f
commit 7e2e046bda
1 changed files with 21 additions and 21 deletions

42
image.d
View File

@ -22,7 +22,7 @@ private bool strEquCI (const(char)[] s0, const(char)[] s1) pure nothrow @trusted
/// Image formats `arsd.image` can load (except `Unknown`, of course). /// Image formats `arsd.image` can load (except `Unknown`, of course).
enum ImageFormat { enum ImageFileFormat {
Unknown, /// Unknown, ///
Png, /// Png, ///
Bmp, /// Bmp, ///
@ -31,8 +31,8 @@ enum ImageFormat {
/// Try to guess image format from file extension. /// Try to guess image format from file extension.
public ImageFormat guessImageFormatFromExtension (const(char)[] filename) { public ImageFileFormat guessImageFormatFromExtension (const(char)[] filename) {
if (filename.length < 2) return ImageFormat.Unknown; if (filename.length < 2) return ImageFileFormat.Unknown;
size_t extpos = filename.length; size_t extpos = filename.length;
version(Windows) { version(Windows) {
while (extpos > 0 && filename.ptr[extpos-1] != '.' && filename.ptr[extpos-1] != '/' && filename.ptr[extpos-1] != '\\' && filename.ptr[extpos-1] != ':') --extpos; while (extpos > 0 && filename.ptr[extpos-1] != '.' && filename.ptr[extpos-1] != '/' && filename.ptr[extpos-1] != '\\' && filename.ptr[extpos-1] != ':') --extpos;
@ -41,35 +41,35 @@ public ImageFormat guessImageFormatFromExtension (const(char)[] filename) {
} }
if (extpos == 0 || filename.ptr[extpos-1] != '.') throw new Exception("cannot determine file format from extension"); if (extpos == 0 || filename.ptr[extpos-1] != '.') throw new Exception("cannot determine file format from extension");
auto ext = filename[extpos..$]; auto ext = filename[extpos..$];
if (strEquCI(ext, "png")) return ImageFormat.Png; if (strEquCI(ext, "png")) return ImageFileFormat.Png;
if (strEquCI(ext, "bmp")) return ImageFormat.Bmp; if (strEquCI(ext, "bmp")) return ImageFileFormat.Bmp;
if (strEquCI(ext, "jpg") || strEquCI(ext, "jpeg")) return ImageFormat.Jpeg; if (strEquCI(ext, "jpg") || strEquCI(ext, "jpeg")) return ImageFileFormat.Jpeg;
return ImageFormat.Unknown; return ImageFileFormat.Unknown;
} }
/// Try to guess image format by first data bytes. /// Try to guess image format by first data bytes.
public ImageFormat guessImageFormatFromMemory (const(void)[] membuf) { public ImageFileFormat guessImageFormatFromMemory (const(void)[] membuf) {
auto buf = cast(const(ubyte)[])membuf; auto buf = cast(const(ubyte)[])membuf;
if (buf.length == 0) return ImageFormat.Unknown; if (buf.length == 0) return ImageFileFormat.Unknown;
// detect file format // detect file format
// png // png
if (buf.length > 7 && buf.ptr[0] == 0x89 && buf.ptr[1] == 0x50 && buf.ptr[2] == 0x4E && if (buf.length > 7 && buf.ptr[0] == 0x89 && buf.ptr[1] == 0x50 && buf.ptr[2] == 0x4E &&
buf.ptr[3] == 0x47 && buf.ptr[4] == 0x0D && buf.ptr[5] == 0x0A && buf.ptr[6] == 0x1A) buf.ptr[3] == 0x47 && buf.ptr[4] == 0x0D && buf.ptr[5] == 0x0A && buf.ptr[6] == 0x1A)
{ {
return ImageFormat.Png; return ImageFileFormat.Png;
} }
// bmp // bmp
if (buf.length > 6 && buf.ptr[0] == 'B' && buf.ptr[1] == 'M') { if (buf.length > 6 && buf.ptr[0] == 'B' && buf.ptr[1] == 'M') {
uint datasize = buf.ptr[2]|(buf.ptr[3]<<8)|(buf.ptr[4]<<16)|(buf.ptr[5]<<24); uint datasize = buf.ptr[2]|(buf.ptr[3]<<8)|(buf.ptr[4]<<16)|(buf.ptr[5]<<24);
if (datasize > 6 && datasize <= buf.length) return ImageFormat.Bmp; if (datasize > 6 && datasize <= buf.length) return ImageFileFormat.Bmp;
} }
// jpg // jpg
try { try {
int width, height, components; int width, height, components;
if (detect_jpeg_image_from_memory(buf, width, height, components)) return ImageFormat.Jpeg; if (detect_jpeg_image_from_memory(buf, width, height, components)) return ImageFileFormat.Jpeg;
} catch (Exception e) {} // sorry } catch (Exception e) {} // sorry
return ImageFormat.Unknown; return ImageFileFormat.Unknown;
} }
@ -79,10 +79,10 @@ public MemoryImage loadImageFromFile(T:const(char)[]) (T filename) {
throw new Exception("cannot load image from unnamed file"); throw new Exception("cannot load image from unnamed file");
} else { } else {
final switch (guessImageFormatFromExtension(filename)) { final switch (guessImageFormatFromExtension(filename)) {
case ImageFormat.Unknown: throw new Exception("cannot determine file format from extension"); case ImageFileFormat.Unknown: throw new Exception("cannot determine file format from extension");
case ImageFormat.Png: static if (is(T == string)) return readPng(filename); else return readPng(filename.idup); case ImageFileFormat.Png: static if (is(T == string)) return readPng(filename); else return readPng(filename.idup);
case ImageFormat.Bmp: static if (is(T == string)) return readBmp(filename); else return readBmp(filename.idup); case ImageFileFormat.Bmp: static if (is(T == string)) return readBmp(filename); else return readBmp(filename.idup);
case ImageFormat.Jpeg: return readJpeg(filename); case ImageFileFormat.Jpeg: return readJpeg(filename);
} }
} }
} }
@ -91,10 +91,10 @@ public MemoryImage loadImageFromFile(T:const(char)[]) (T filename) {
/// Try to guess image format from data and load that image. /// Try to guess image format from data and load that image.
public MemoryImage loadImageFromMemory (const(void)[] membuf) { public MemoryImage loadImageFromMemory (const(void)[] membuf) {
final switch (guessImageFormatFromMemory(membuf)) { final switch (guessImageFormatFromMemory(membuf)) {
case ImageFormat.Unknown: throw new Exception("cannot determine file format"); case ImageFileFormat.Unknown: throw new Exception("cannot determine file format");
case ImageFormat.Png: return imageFromPng(readPng(cast(const(ubyte)[])membuf)); case ImageFileFormat.Png: return imageFromPng(readPng(cast(const(ubyte)[])membuf));
case ImageFormat.Bmp: return readBmp(cast(const(ubyte)[])membuf); case ImageFileFormat.Bmp: return readBmp(cast(const(ubyte)[])membuf);
case ImageFormat.Jpeg: return readJpegFromMemory(cast(const(ubyte)[])membuf); case ImageFileFormat.Jpeg: return readJpegFromMemory(cast(const(ubyte)[])membuf);
} }
} }