Hook for subclasses to handle custom chunks in the png file as it is loaded by readApng.
override void handleOtherChunkWhenLoading(Chunk chunk) { if(chunk.stype == "mine") { ubyte[] data = chunk.payload; // process it } }
See Implementation
Added December 26, 2021 (dub v10.5)
Hook for subclasses to handle custom chunks in the png file as it is loaded by readApng.