From 2ff7b77ac1841dfe35ad107968f2572aa65f1421 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 6 Jul 2019 15:00:22 -0400 Subject: [PATCH] finally right greyscale lol --- png.d | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/png.d b/png.d index 0e353b5..a0d880b 100644 --- a/png.d +++ b/png.d @@ -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;