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

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

public BarcodeQRCode ( String content, int width, int height, Object>.IDictionary hints ) : System
content String
width int
height int
hints Object>.IDictionary
Результат System
        public BarcodeQRCode(String content, int width, int height, IDictionary<EncodeHintType, Object> hints) {
            QRCodeWriter qc = new QRCodeWriter();
            bm = qc.Encode(content, width, height, hints);
        }