iTextSharp.text.pdf.codec.TIFFLZWDecoder.AddStringToTable C# (CSharp) Method

AddStringToTable() public method

public AddStringToTable ( byte strn ) : void
strn byte
return void
        public void AddStringToTable(byte[] strn) {
            
            // Add this new String to the table
            stringTable[tableIndex++] = strn;
            
            if (tableIndex == 511) {
                bitsToGet = 10;
            } else if (tableIndex == 1023) {
                bitsToGet = 11;
            } else if (tableIndex == 2047) {
                bitsToGet = 12;
            }
        }
        

Same methods

TIFFLZWDecoder::AddStringToTable ( byte oldString, byte newString ) : void