我创建了一个将QRCode放在PDF上的程序。我已经将iTextSharp用于此目的。 我能够成功生成QRCode,但我无法更改Margin和Scale的默认选项。另外,请帮助我更改或验证代码类型。 以下是我写的代码。
IDictionary<EncodeHintType, Object> hints= new Dictionary<EncodeHintType,object>();
hints.Add(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.L);
BarcodeQRCode QRCoode = new BarcodeQRCode(txt_bardata.Text.Trim(),1,1,hints);
iTextSharp.text.Image imgQR = QRCoode.GetImage();