static public method BarcodesMaker.GetQRCode

Brief

Generates a QR code with specified error correction level, version, and pixel scaling from the input data and returns the QR code image as an array of bytes.

Declaration
C#
Byte[]  GetQRCode (string data, QRCodeEncodingMethod encoding, QRCodeErrorCorrection levelCorrection, QRCodeVersion version, int scaleMultiplier = 1)

Parameters
data

The user data for encoding.

encoding

The QR code encoding.

levelCorrection

The level of error correction.

version

The QR code version.

scaleMultiplier

The pixel scaling of the resulting QR code image.

Declared in BarcodesMaker

back