diff --git a/png.d b/png.d index d12f9fb..f9c3d00 100644 --- a/png.d +++ b/png.d @@ -685,6 +685,11 @@ void addImageDatastreamToPng(const(ubyte)[] data, PNG* png) { PngHeader h = getHeader(png); + if(h.depth == 0) + throw new Exception("depth of zero makes no sense"); + if(h.width == 0) + throw new Exception("width zero?!!?!?!"); + size_t bytesPerLine; switch(h.type) { case 0: