CSJ2K.Icc.Tags.ICCTag.ICCTag C# (CSharp) Метод

ICCTag() защищенный Метод

Ued by subclass initialization to store the state common to all tags
protected ICCTag ( int signature, byte data, int offset, int count ) : System
signature int tag being created ///
data byte byte array containg embedded tag data ///
offset int to tag data in the array ///
count int size of tag data in bytes ///
Результат System
        protected internal ICCTag(int signature, byte[] data, int offset, int count)
        {
            this.signature = signature;
            this.data = data;
            this.offset = offset;
            this.count = count;
            this.type = ICCProfile.getInt(data, offset);
        }

Same methods

ICCTag::ICCTag ( ) : System