All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fastchar.extjs.appshare.utils.PNGIHDRTrunk Maven / Gradle / Ivy

Go to download

FastChar-ExtJs-AppShare is a FastChar-ExtJs plugin.Used for APP application distribution download, support android and ios

The newest version!
package com.fastchar.extjs.appshare.utils;

public class PNGIHDRTrunk extends PNGTrunk {
	public int m_nWidth;
	public int m_nHeight;

	public PNGIHDRTrunk(int nSize, String szName, byte[] nData, byte[] nCRC) {
		super(nSize, szName, nData, nCRC);

		this.m_nWidth = readInt(nData, 0);
		this.m_nHeight = readInt(nData, 4);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy