Click or drag to resize

QRcodeCreateGifInUtf8 Method

Create a GIF file of a QR code, using UTF-8 encoding [deprecated].

Namespace: diQRcodeNet
Assembly: diQRcodeNet (in diQRcodeNet.dll) Version: 4.0.0.26352 (4.0.0.1)
Syntax
public static int CreateGifInUtf8(
	string outFile,
	string inputStr,
	int nPixelsPerModule = 0,
	Ecc level = Ecc.M,
	string paramStr = "",
	Options options = Options.Default
)

Parameters

outFile  String
Name of output GIF file to be created.
inputStr  String
Text input to be encoded.
nPixelsPerModule  Int32  (Optional)
Number of pixels per module (default = 2 ppm)
level  Ecc  (Optional)
Error correction code level (default = M)
paramStr  String  (Optional)
Optional parameter string. Set as "margin=N" to change the margin to N modules (default=4).
options  Options  (Optional)
Option flags.

Return Value

Int32
Zero on success, or a nonzero error code.
Remarks
Any non-ASCII characters in inputStr will be encoded in UTF-8 before processing. Deprecated. Use QRCode.CreateImageInUtf8
See Also