C# 클래스 ImageTools.IO.Png.PngChunk

Stores header information about a chunk.
파일 보기 프로젝트 열기: prepare/HTML-Renderer 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
Crc uint
Data byte[]
Length int
Type string

프로퍼티 상세

Crc 공개적으로 프로퍼티

A CRC (Cyclic Redundancy Check) calculated on the preceding bytes in the chunk, including the chunk type code and chunk data fields, but not including the length field. The CRC is always present, even for chunks containing no data
public uint Crc
리턴 uint

Data 공개적으로 프로퍼티

The data bytes appropriate to the chunk type, if any. This field can be of zero length.
public byte[] Data
리턴 byte[]

Length 공개적으로 프로퍼티

An unsigned integer giving the number of bytes in the chunk's data field. The length counts only the data field, not itself, the chunk type code, or the CRC. Zero is a valid length
public int Length
리턴 int

Type 공개적으로 프로퍼티

A chunk type as string with 4 chars.
public string Type
리턴 string