Hi,
How can we set QR code Image height and width ?
I am setting image height width but its giving only default size of QRcode
settings.Type = BarCodeType.QRCode;
settings.Unit = GraphicsUnit.Pixel;
settings.X = Convert.ToInt64(txtHeight.Text);
settings.Y = Convert.ToInt64(txtWidth.Text);
settings.ImageHeight = Convert.ToInt64( txtHeight.Text);
settings.ImageWidth = Convert.ToInt64(txtWidth.Text);
Thanks