Код: Выделить всё
public Bitmap GenerateQR(string text)
{
BarcodeWriter br = new BarcodeWriter();
EncodingOptions encodingOptions = new EncodingOptions()
{
Width = 300,
Height = 300,
Margin = 1,
PureBarcode = false,
};
encodingOptions.Hints.Add(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);
br.Options = encodingOptions;
br.Format = BarcodeFormat.QR_CODE;
if (!string.IsNullOrWhiteSpace(text))
{
br.Renderer = new BitmapRenderer()
{
Foreground = Color.Black,
Background = Color.White,
};
return br.Write(texto);
}
}
Подробнее здесь: https://stackoverflow.com/questions/775 ... r-qr-codes