summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Scott <xeons@users.noreply.github.com>2019-09-29 02:55:28 -0500
committerAndreas Kling <awesomekling@gmail.com>2019-09-29 09:55:28 +0200
commitaac8b091a4b1a2930c7f3b61c61439d3f42d7dff (patch)
treef9d3295f651ad942d0aa2a4a7a4e8162a340f7a8
parentdba74abe939f4bc9d738361cafd2fa67010aad33 (diff)
downloadserenity-aac8b091a4b1a2930c7f3b61c61439d3f42d7dff.zip
LibDraw: Implemented support for more PNG formats (#614)
- Implemented support for more PNG formats including 16-bit per channel and 8-bit indexed with palette. - Made the library a little more resistant to crashes by returning false for known but unsupported formats.
-rw-r--r--Libraries/LibDraw/PNGLoader.cpp163
1 files changed, 138 insertions, 25 deletions
diff --git a/Libraries/LibDraw/PNGLoader.cpp b/Libraries/LibDraw/PNGLoader.cpp
index 4391ff0880..1ac82d292d 100644
--- a/Libraries/LibDraw/PNGLoader.cpp
+++ b/Libraries/LibDraw/PNGLoader.cpp
@@ -27,7 +27,37 @@ static_assert(sizeof(PNG_IHDR) == 13);
struct Scanline {
u8 filter { 0 };
- ByteBuffer data { };
+ ByteBuffer data {};
+};
+
+struct [[gnu::packed]] PaletteEntry
+{
+ u8 r;
+ u8 g;
+ u8 b;
+ //u8 a;
+};
+
+struct [[gnu::packed]] Triplet
+{
+ u8 r;
+ u8 g;
+ u8 b;
+};
+
+struct [[gnu::packed]] Triplet16
+{
+ u16 r;
+ u16 g;
+ u16 b;
+};
+
+struct [[gnu::packed]] Quad16
+{
+ u16 r;
+ u16 g;
+ u16 b;
+ u16 a;
};
struct PNGLoadingContext {
@@ -40,12 +70,14 @@ struct PNGLoadingContext {
u8 interlace_method { 0 };
u8 bytes_per_pixel { 0 };
bool has_seen_zlib_header { false };
- bool has_alpha() const { return color_type & 4; }
+ bool has_alpha() const { return color_type & 4 || palette_transparency_data.size() > 0; }
Vector<Scanline> scanlines;
RefPtr<GraphicsBitmap> bitmap;
u8* decompression_buffer { nullptr };
int decompression_buffer_size { 0 };
Vector<u8> compressed_data;
+ Vector<PaletteEntry> palette_data;
+ Vector<u8> palette_transparency_data;
};
class Streamer {
@@ -237,26 +269,66 @@ template<bool has_alpha, u8 filter_type>
// First unpack the scanlines to RGBA:
switch (context.color_type) {
case 2:
- for (int y = 0; y < context.height; ++y) {
- struct [[gnu::packed]] Triplet
- {
- u8 r;
- u8 g;
- u8 b;
- };
- auto* triplets = (Triplet*)context.scanlines[y].data.pointer();
- for (int i = 0; i < context.width; ++i) {
- auto& pixel = (Pixel&)context.bitmap->scanline(y)[i];
- pixel.r = triplets[i].r;
- pixel.g = triplets[i].g;
- pixel.b = triplets[i].b;
- pixel.a = 0xff;
+ if (context.bit_depth == 8) {
+ for (int y = 0; y < context.height; ++y) {
+ auto* triplets = (Triplet*)context.scanlines[y].data.pointer();
+ for (int i = 0; i < context.width; ++i) {
+ auto& pixel = (Pixel&)context.bitmap->scanline(y)[i];
+ pixel.r = triplets[i].r;
+ pixel.g = triplets[i].g;
+ pixel.b = triplets[i].b;
+ pixel.a = 0xff;
+ }
+ }
+ } else if (context.bit_depth == 16) {
+ for (int y = 0; y < context.height; ++y) {
+ auto* triplets = (Triplet16*)context.scanlines[y].data.pointer();
+ for (int i = 0; i < context.width; ++i) {
+ auto& pixel = (Pixel&)context.bitmap->scanline(y)[i];
+ pixel.r = triplets[i].r & 0xFF;
+ pixel.g = triplets[i].g & 0xFF;
+ pixel.b = triplets[i].b & 0xFF;
+ pixel.a = 0xff;
+ }
}
+ } else {
+ ASSERT_NOT_REACHED();
}
break;
case 6:
+ if (context.bit_depth == 8) {
+ for (int y = 0; y < context.height; ++y) {
+ memcpy(context.bitmap->scanline(y), context.scanlines[y].data.pointer(), context.scanlines[y].data.size());
+ }
+ } else if (context.bit_depth == 16) {
+ for (int y = 0; y < context.height; ++y) {
+ auto* triplets = (Quad16*)context.scanlines[y].data.pointer();
+ for (int i = 0; i < context.width; ++i) {
+ auto& pixel = (Pixel&)context.bitmap->scanline(y)[i];
+ pixel.r = triplets[i].r & 0xFF;
+ pixel.g = triplets[i].g & 0xFF;
+ pixel.b = triplets[i].b & 0xFF;
+ pixel.a = triplets[i].a & 0xFF;
+ }
+ }
+ } else {
+ ASSERT_NOT_REACHED();
+ }
+ break;
+ case 3:
for (int y = 0; y < context.height; ++y) {
- memcpy(context.bitmap->scanline(y), context.scanlines[y].data.pointer(), context.scanlines[y].data.size());
+ auto* palette_index = (u8*)context.scanlines[y].data.pointer();
+ for (int i = 0; i < context.width; ++i) {
+ auto& pixel = (Pixel&)context.bitmap->scanline(y)[i];
+ auto& color = context.palette_data.at((int)palette_index[i]);
+ auto transparency = context.palette_transparency_data.size() >= palette_index[i] + 1
+ ? (int)context.palette_transparency_data.data()[palette_index[i]]
+ : 0xFF;
+ pixel.r = color.r;
+ pixel.g = color.g;
+ pixel.b = color.b;
+ pixel.a = transparency;
+ }
}
break;
default:
@@ -402,23 +474,44 @@ static bool process_IHDR(const ByteBuffer& data, PNGLoadingContext& context)
context.filter_method = ihdr.filter_method;
context.interlace_method = ihdr.interlace_method;
+#ifdef PNG_DEBUG
+ printf("PNG: %dx%d (%d bpp)\n", context.width, context.height, context.bit_depth);
+ printf(" Color type: %d\n", context.color_type);
+ printf("Compress Method: %d\n", context.compression_method);
+ printf(" Filter Method: %d\n", context.filter_method);
+ printf(" Interlace type: %d\n", context.interlace_method);
+#endif
+
+ // FIXME: Implement Adam7 deinterlacing
+ if (context.interlace_method != 0) {
+ dbgprintf("PNGLoader::process_IHDR: Interlaced PNGs not currently supported.\n");
+ return false;
+ }
+
switch (context.color_type) {
+ case 0: // Each pixel is a grayscale sample.
+ case 4: // Each pixel is a grayscale sample, followed by an alpha sample.
+ // FIXME: Implement grayscale PNG support.
+ dbgprintf("PNGLoader::process_IHDR: Unsupported grayscale format.\n");
+ return false;
case 2:
- context.bytes_per_pixel = 3;
+ context.bytes_per_pixel = 3 * (ihdr.bit_depth / 8);
+ break;
+ case 3: // Each pixel is a palette index; a PLTE chunk must appear.
+ // FIXME: Implement support for 1/2/4 bit palette based images.
+ if (ihdr.bit_depth != 8) {
+ dbgprintf("PNGLoader::process_IHDR: Unsupported index-based format (%d bpp).\n", context.bit_depth);
+ return false;
+ }
+ context.bytes_per_pixel = 1;
break;
case 6:
- context.bytes_per_pixel = 4;
+ context.bytes_per_pixel = 4 * (ihdr.bit_depth / 8);
break;
default:
ASSERT_NOT_REACHED();
}
-#ifdef PNG_DEBUG
- printf("PNG: %dx%d (%d bpp)\n", context.width, context.height, context.bit_depth);
- printf(" Color type: %b\n", context.color_type);
- printf(" Interlace type: %b\n", context.interlace_method);
-#endif
-
context.decompression_buffer_size = (context.width * context.height * context.bytes_per_pixel + context.height);
context.decompression_buffer = (u8*)mmap_with_name(nullptr, context.decompression_buffer_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, 0, 0, "PNG decompression buffer");
return true;
@@ -430,6 +523,22 @@ static bool process_IDAT(const ByteBuffer& data, PNGLoadingContext& context)
return true;
}
+static bool process_PLTE(const ByteBuffer& data, PNGLoadingContext& context)
+{
+ context.palette_data.append((const PaletteEntry*)data.pointer(), data.size() / 3);
+ return true;
+}
+
+static bool process_tRNS(const ByteBuffer& data, PNGLoadingContext& context)
+{
+ switch (context.color_type) {
+ case 3:
+ context.palette_transparency_data.append(data.pointer(), data.size());
+ break;
+ }
+ return true;
+}
+
static bool process_chunk(Streamer& streamer, PNGLoadingContext& context)
{
u32 chunk_size;
@@ -461,5 +570,9 @@ static bool process_chunk(Streamer& streamer, PNGLoadingContext& context)
return process_IHDR(chunk_data, context);
if (!strcmp((const char*)chunk_type, "IDAT"))
return process_IDAT(chunk_data, context);
+ if (!strcmp((const char*)chunk_type, "PLTE"))
+ return process_PLTE(chunk_data, context);
+ if (!strcmp((const char*)chunk_type, "tRNS"))
+ return process_tRNS(chunk_data, context);
return true;
}