Esempio n. 1
0
        public static void AddQRCode(this PdfContentByte pdfContentByte, float x, float y, string text, int size)
        {
            var image = new BarcodeQRCode(text, size, size, null).GetImage();

            image.SetAbsolutePosition(x, y);
            pdfContentByte.AddImage(image);
        }