Hello Folks, today I am sharing you the standard way to point QR code with Logo in X++.

System.Drawing.Bitmap icon;
EFDocQRCode_BR generateQR = new EFDocQRCode_BR();
icon = new System.Drawing.Bitmap("K:\Logo\MyLogo.bmp");
generateQR = new EFDocQRCode_BR();
generateQR.parmIcon(icon);
generateQR.parmIconRatio(0.25);
return generateQR.generateQRCode("www.google.com");
This code will return you a container which can be use directly in image control inside a SSRS report or in an ER report format