iTextSharp.text.pdf.BaseFont.StreamFont.StreamFont C# (CSharp) 메소드

StreamFont() 공개 메소드

public StreamFont ( byte contents, string subType, int compressionLevel ) : System
contents byte
subType string
compressionLevel int
리턴 System
            public StreamFont(byte[] contents, string subType, int compressionLevel)
            {
                bytes = contents;
                Put(PdfName.LENGTH, new PdfNumber(bytes.Length));
                if (subType != null)
                    Put(PdfName.SUBTYPE, new PdfName(subType));
                FlateCompress(compressionLevel);
            }

Same methods

BaseFont.StreamFont::StreamFont ( byte contents, int lengths, int compressionLevel ) : System
BaseFont.StreamFont