jogamp.opengl.util.pngj.chunks.PngChunkIDAT Maven / Gradle / Ivy
package jogamp.opengl.util.pngj.chunks;
import jogamp.opengl.util.pngj.ImageInfo;
/**
* IDAT chunk.
*
* see http://www.w3.org/TR/PNG/#11IDAT
*
* This is dummy placeholder - we write/read this chunk (actually several) by
* special code.
*/
public class PngChunkIDAT extends PngChunkMultiple {
public final static String ID = ChunkHelper.IDAT;
// http://www.w3.org/TR/PNG/#11IDAT
public PngChunkIDAT(ImageInfo i, int len, long offset) {
super(ID, i);
this.length = len;
this.offset = offset;
}
@Override
public ChunkOrderingConstraint getOrderingConstraint() {
return ChunkOrderingConstraint.NA;
}
@Override
public ChunkRaw createRawChunk() {// does nothing
return null;
}
@Override
public void parseFromRaw(ChunkRaw c) { // does nothing
}
@Override
public void cloneDataFromRead(PngChunk other) {
}
}