mirror of https://github.com/adamdruppe/arsd.git
apng loading works
This commit is contained in:
parent
85b6a93e47
commit
66a86be0b7
21
apng.d
21
apng.d
|
@ -57,6 +57,7 @@ class ApngFrame {
|
||||||
auto height = frameControlChunk.height;
|
auto height = frameControlChunk.height;
|
||||||
|
|
||||||
auto bytesPerLine = bytesPerLineOfPng(parent.header.depth, parent.header.type, width);
|
auto bytesPerLine = bytesPerLineOfPng(parent.header.depth, parent.header.type, width);
|
||||||
|
bytesPerLine--; // removing filter byte from this calculation since we handle separtely
|
||||||
|
|
||||||
int idataIdx;
|
int idataIdx;
|
||||||
ubyte[] idata;
|
ubyte[] idata;
|
||||||
|
@ -79,11 +80,7 @@ class ApngFrame {
|
||||||
this.data = idata;
|
this.data = idata;
|
||||||
}
|
}
|
||||||
|
|
||||||
// then need to uncompress it
|
//MemoryImage frameData;
|
||||||
// and unfilter it...
|
|
||||||
// and then convert it to the right format.
|
|
||||||
|
|
||||||
MemoryImage frameData;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class ApngAnimation {
|
class ApngAnimation {
|
||||||
|
@ -109,16 +106,16 @@ enum APNG_BLEND_OP : byte {
|
||||||
OVER = 1
|
OVER = 1
|
||||||
}
|
}
|
||||||
|
|
||||||
void readApng(in ubyte[] data) {
|
ApngAnimation readApng(in ubyte[] data) {
|
||||||
auto png = readPng(data);
|
auto png = readPng(data);
|
||||||
auto header = PngHeader.fromChunk(png.chunks[0]);
|
auto header = PngHeader.fromChunk(png.chunks[0]);
|
||||||
Color[] palette;
|
|
||||||
if(header.type == 3) {
|
|
||||||
palette = fetchPalette(png);
|
|
||||||
}
|
|
||||||
|
|
||||||
auto obj = new ApngAnimation();
|
auto obj = new ApngAnimation();
|
||||||
|
|
||||||
|
if(header.type == 3) {
|
||||||
|
obj.palette = fetchPalette(png);
|
||||||
|
}
|
||||||
|
|
||||||
bool seenIdat = false;
|
bool seenIdat = false;
|
||||||
bool seenFctl = false;
|
bool seenFctl = false;
|
||||||
|
|
||||||
|
@ -227,11 +224,13 @@ void readApng(in ubyte[] data) {
|
||||||
expectedSequenceNumber++;
|
expectedSequenceNumber++;
|
||||||
|
|
||||||
// and the rest of it is a datastream...
|
// and the rest of it is a datastream...
|
||||||
obj.frames[frameNumber - 1].compressedDatastream ~= chunk.payload;
|
obj.frames[frameNumber - 1].compressedDatastream ~= chunk.payload[offset .. $];
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
// ignore
|
// ignore
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return obj;
|
||||||
}
|
}
|
||||||
|
|
3
png.d
3
png.d
|
@ -231,7 +231,7 @@ void convertPngData(ubyte type, ubyte depth, const(ubyte)[] data, int width, uby
|
||||||
break;
|
break;
|
||||||
default: assert(0);
|
default: assert(0);
|
||||||
}
|
}
|
||||||
assert(data.length == 0, "not all consumed, wtf ");// ~ to!string(h));
|
assert(data.length == 0, "not all consumed, wtf " ~ to!string(data));
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1482,6 +1482,7 @@ struct LazyPngFile(LazyPngChunksProvider)
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME: doesn't handle interlacing... I think
|
// FIXME: doesn't handle interlacing... I think
|
||||||
|
// note it returns the length including the filter byte!!
|
||||||
@nogc @safe pure nothrow
|
@nogc @safe pure nothrow
|
||||||
int bytesPerLineOfPng(ubyte depth, ubyte type, uint width) {
|
int bytesPerLineOfPng(ubyte depth, ubyte type, uint width) {
|
||||||
immutable bitsPerChannel = depth;
|
immutable bitsPerChannel = depth;
|
||||||
|
|
Loading…
Reference in New Issue