1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:57:44 +00:00

LibGfx/PNG: Add support for animated PNG images

This commit is contained in:
Tom 2023-04-08 23:40:55 -06:00 committed by Sam Atkins
parent e7921cfe14
commit f0f82c6391
2 changed files with 437 additions and 42 deletions

View file

@ -32,6 +32,8 @@ public:
private:
PNGImageDecoderPlugin(u8 const*, size_t);
bool ensure_image_data_chunk_was_decoded();
bool ensure_animation_frame_was_decoded(u32);
OwnPtr<PNGLoadingContext> m_context;
};