else if (chunkType == gAMA)
result.add(new PNGChunkgAMA(length, chunkType, CRC, bytes));
else if (chunkType == iTXt)
result.add(new PNGChunkiTXt(length, chunkType, CRC, bytes));
else
result.add(new PNGChunk(length, chunkType, CRC, bytes));
if (returnAfterFirst)
return result;
}