4
Is there any way to adjust the height is width? thanks
public void GerarQrCode(string NomeImagem,string Data)
{
QRCodeEncoder encoder = new QRCodeEncoder();
Bitmap img = encoder.Encode("www.teste.com.br");
var path = Server.MapPath("~/Content/images/");
img.Save(path + NomeImagem + ".jpg", ImageFormat.Jpeg);
}