LZWDecoder Public class
Diagram
flowchart LR classDef interfaceStyle stroke-dasharray: 5 5; classDef abstractStyle stroke-width:4px subgraph iTextSharp.text.pdf iTextSharp.text.pdf.LZWDecoder[[LZWDecoder]] end
Members
Properties
Public properties
|
Type |
Name |
Methods |
|---|---|---|
|
|
|
|
Methods
Public methods
|
Returns |
Name |
|---|---|
|
|
( |
|
|
( |
|
|
( |
|
|
() |
|
|
( |
Details
Constructors
LZWDecoder
Source code
public LZWDecoder()
Methods
Decode
Source code
public virtual void Decode(byte[] data, Stream uncompData)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
data |
|
|
|
uncompData |
InitializeStringTable
Source code
public virtual void InitializeStringTable()
WriteString
Source code
public virtual void WriteString(byte[] str)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
str |
AddStringToTable [1/2]
Source code
public virtual void AddStringToTable(byte[] oldstring, byte newstring)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
oldstring |
|
|
|
newstring |
AddStringToTable [2/2]
Source code
public virtual void AddStringToTable(byte[] str)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
str |
ComposeString
Source code
public virtual byte ComposeString(byte[] oldstring, byte newstring)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
oldstring |
|
|
|
newstring |
Properties
NextCode
public virtual int NextCode { get; }
Generated with ModularDoc