I have create a QRcode with iTextSharp but how can i add image in QRcode?
for example in my code:
var paramQR = new Dictionary<EncodeHintType, object>();
paramQR.Add(EncodeHintType.CHARACTER_SET, "UTF-8");
paramQR.Add(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.L);
BarcodeQRCode qrcode = new BarcodeQRCode("some text", 50, 50, paramQR);
I want replace "some text"
with an image.
can i do that?