iTextSharp.text.ImgJBIG2.ImgJBIG2 C# (CSharp) Метод

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

public ImgJBIG2 ( int width, int height, byte data, byte globals ) : System
width int
height int
data byte
globals byte
Результат System
        public ImgJBIG2(int width, int height, byte[] data, byte[] globals)
            : base((Uri)null)
        {
            type = Element.JBIG2;
            originalType = ORIGINAL_JBIG2;
            scaledHeight = height;
            this.Top = scaledHeight;
            scaledWidth = width;
            this.Right = scaledWidth;
            bpc = 1;
            colorspace = 1;
            rawData = data;
            plainWidth = this.Width;
            plainHeight = this.Height;
            if ( globals != null ) {
                this.global = globals;
                try {
                    this.globalHash = DigestAlgorithms.Digest("MD5", this.global);
                } catch {
                    //ignore
                }
            }
        }

Same methods

ImgJBIG2::ImgJBIG2 ( ) : System
ImgJBIG2::ImgJBIG2 ( Image image ) : System
ImgJBIG2