Greeting Everyone,
When i generate QR code in my report this is how it looks.

Is it possible to change the QR Image font to somethin simpler like for example

As the qr will be printed on a sticker of various sizes the current printing sticker is hard to scan because of small size.
Thanks in Advance.
My current code
---------------------------------------------------------------
str QrCodeBase64String;
Microsoft.Dynamics.ApplicationSuite.QRCode.Encoder qrCode;
System.String netString;
str tempFileName;
System.Drawing.Bitmap netBitmap;
Bitmap imageQR;
FileIOPermission perm;
BinData binData;
container imageContainer;
;
QrCodeBase64String = inventTrans.inventDim().inventBatchId;
qrCode = new Microsoft.Dynamics.ApplicationSuite.QRCode.Encoder();
binData = new binData();
tempFileName = qrCode.GetTempFile(QrCodeBase64String);
perm = new FileIOPermission(tempFileName,'RW');
perm.assert();
binData.loadFile(tempFileName);
imageContainer = binData.getData();
QRCodeTokenTmp.inventBatchIdPrefix = inventTrans.inventDim().inventBatchId;
QRCodeTokenTmp.configId = inventTrans.inventDim().configId;
QRCodeTokenTmp.QrCodeBase = new EFDocQRCode_BR().generateQRCode(QrCodeBase64String);
QRCodeTokenTmp.insert();
--------------------------------------------------------
Thanks in advance