iTextSharp.text.pdf.BarcodeQRCode.BarcodeQRCode C# (CSharp) Method

BarcodeQRCode() public method

public BarcodeQRCode ( String content, int width, int height, Object>.IDictionary hints ) : System
content String
width int
height int
hints Object>.IDictionary
return System
        public BarcodeQRCode(String content, int width, int height, IDictionary<EncodeHintType, Object> hints) {
            QRCodeWriter qc = new QRCodeWriter();
            bm = qc.Encode(content, width, height, hints);
        }