wtf files out there in the wild

This commit is contained in:
Adam D. Ruppe 2020-02-02 15:15:42 -05:00
parent dcf92cb99f
commit 29deae2d07
1 changed files with 5 additions and 0 deletions

5
png.d
View File

@ -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: