finally right greyscale lol

This commit is contained in:
Adam D. Ruppe 2019-07-06 15:00:22 -04:00
parent b7ad04afd9
commit 2ff7b77ac1
1 changed files with 8 additions and 7 deletions

15
png.d
View File

@ -168,13 +168,14 @@ void convertPngData(ubyte type, ubyte depth, const(ubyte)[] data, int width, uby
if(type == 3) {
idata[idataIdx++] = p;
} else {
if(depth < 8) {
if(p == (1 << depth - 1)) {
p <<= 8 - depth;
p |= 1 << depth - 1;
} else {
p <<= 8 - depth;
}
if(depth == 1) {
p = p ? 0xff : 0;
} else if (depth == 2) {
p |= p << 2;
p |= p << 4;
}
else if (depth == 4) {
p |= p << 4;
}
idata[idataIdx++] = p;
idata[idataIdx++] = p;