// Compression
tmp = readUnsignedByte(inputStream, this);
chcks.update((byte)tmp);
if (tmp!=0) {
repInfo.setMessage(new InfoMessage("Attenzione, tipo di compressine " +
tmp + " not conforme alla raccommandazione del W3C."));
}
// filtering
tmp = readUnsignedByte(inputStream, this);
chcks.update((byte)tmp);
if (tmp!=0) {
repInfo.setMessage(new InfoMessage("Attenzione, tipo di filtro " +
tmp + " no ancora standardizzato dal W3C."));
}
// interlace
tmp = readUnsignedByte(inputStream, this);
chcks.update((byte)tmp);
if (tmp!=0 && tmp!=1) {
repInfo.setMessage(new InfoMessage("Attenzione, tipo di interlacciamento " +
tmp + " no ancora standardizzato dal W3C."));
}
long crc32 = readUnsignedInt(inputStream, PNG_ENDIANITY, this);