iTextSharp.text.pdf.codec.TIFFFaxDecoder.TIFFFaxDecoder C# (CSharp) Метод

TIFFFaxDecoder() публичный Метод

public TIFFFaxDecoder ( int fillOrder, int w, int h ) : System
fillOrder int
w int
h int
Результат System
        public TIFFFaxDecoder(int fillOrder, int w, int h) {
            this.fillOrder = fillOrder;
            this.w = w;
            this.h = h;
            
            this.bitPointer = 0;
            this.bytePointer = 0;
            this.prevChangingElems = new int[w];
            this.currChangingElems = new int[w];
        }