Manual - QRCode
Introduction
QRCode code comes from the 2D barcode family. You can encode a large amount of information within a single barcode.
All the ASCII characters from 0 to 255 are supported. The barcode size will be determined by the number of data to be encoded and the chosen error correction level. You can force the barcode to be rendered a specific size as long as there is enough room to encode the data.
You can enter ECI mode with the function SetAcceptECI().
This class inherits the BCGBarcode2D class.
Example
Methods
BCGqrcode's Methods
- GetErrorLevel() — Gets the error correction level of the barcode
-
SetErrorLevel(int
level ) — Sets the error correction level of the barcode - GetSize() — Gets the size of the barcode
-
SetSize(int
value ) — Sets the size of the barcode -
SetStructuredAppend(int
snum , intst , stringsname ) — Specifies that data will be expanded between multiple barcodes - GetFNC1() — Gets if the FNC1 is activated
-
SetFNC1(int
fnc1Type , stringfnc1Id ) — Transforms your barcode in GS1 or AIM standard - GetAcceptECI() — Gets if ECI codes are accepted
-
SetAcceptECI(bool
accept ) — Specifies to accepts the ECI codes - GetQuietZone() — Gets if the quiet zone will be drawn
-
SetQuietZone(bool
quietZone ) — Specifies to draw a quiet zone around the barcode - GetMirror() — Gets if the barcode is in mirror mode
-
SetMirror(bool
mirror ) — Specifies to draw the barcode in mirror - GetMask() — Gets the mask for the encoding
-
SetMask(int
mask ) — Specifies a mask to use instead of calculating one -
SetQRSize(int
qrSize , boolqrMicro ) — Specifies the size to use for the barcode
BCGBarcode2D's Methods
-
SetScaleX(int
scaleX ) — Sets the scaling X for the barcode -
SetScaleY(int
scaleY ) — Sets the scaling Y for the barcode
BCGBarcode's Methods
-
Parse(string
text ) — Analyzes atext message to draw afterwards -
Draw(Graphics
image ) — Draws the barcode on theimage -
GetDimension(int
width , intheight ) — Returns an array containing the required size for the image - GetScale() — Gets the scale of the barcode
-
SetScale(int
scale ) — Sets the scale of the barcode - GetForegroundColor() — Gets the color of the bars
-
SetForegroundColor(BCGColor
color ) — Sets the color of the bars - GetBackgroundColor() — Gets the color of the spaces
-
SetBackgroundColor(BCGColor
color ) — Sets the color of the spaces -
SetColor(BCGColor
foregroundColor , BCGColorbackgroundColor ) — Sets the color of the bars and spaces - GetOffsetX() — Gets the X offset
-
SetOffsetX(int
value ) — Sets the X offset - GetOffsetY() — Gets the Y offset
-
SetOffsetY(int
value ) — Sets the Y offset -
AddLabel(BCGLabel
label ) — Adds a label to the graphic -
RemoveLabel(BCGLabel
label ) — Removes a label from the graphic - ClearLabels() — Removes the labels from the graphic
Code Example
var colorBlack = new BCGColor(Color.Black);
var colorWhite = new BCGColor(Color.White);
// Barcode Part
var code = new BCGqrcode();
code.SetScale(2);
code.SetForegroundColor(colorBlack);
code.SetBackgroundColor(colorWhite);
code.SetErrorLevel(1);
code.Parse("QRCode");
// Drawing Part
var drawing = new BCGDrawing(code, colorWhite);
var memoryStream = new MemoryStream();
await drawing
.FinishAsync(BCGDrawing.ImageFormat.Png, memoryStream);
Method explanations
-
GetErrorLevel()
—
Gets the error correction level of the barcode
DescriptionThis is the error correction level percentage.Returns
int - value between 0 and 3 -
SetErrorLevel(int
level ) — Sets the error correction level of the barcodeDescriptionThis is the error correction level percentage before drawing the barcode.
The level must be an integer 0 to 3, or the corresponding letter L, M, Q, H.
The error level can recover respectively, approximately 7%, 15%, 25%, and 30%.
The default value is 1 (M). -
GetSize()
—
Gets the size of the barcode
DescriptionGets the size mode of the final barcode.
See SetSize() for more details.Returnsint - constant value defined inSetSize() -
SetSize(int
value ) — Sets the size of the barcodeDescriptionThe size of the final barcode will be decided automatically depending on the data you give and the error correction level percentage you have chosen, unless you specify it with the methodSetQRSize() .
You can specify different values to this method to get a different code. There are the possible values:
BCGqrcode.Size.Smallest : The code will be the smallest possible
BCGqrcode.Size.Micros : The code will be in Micro mode
BCGqrcode.Size.Full : The code will be in Full mode
The default value isBCGqrcode.Size.Full . -
SetStructuredAppend(int
snum , intst , stringsname ) — Specifies that data will be expanded between multiple barcodesDescriptionQRCode code data can be separated throughout many different barcodes.
The first argument is the barcode number (beginning with 1), the second argument is the total number of barcodes you have. The last argument is the identifier of your group. This argument must stay the same for every barcode in the group.
The specification indicates that this argument should be the data that will be encoded throughout all your barcodes.
Providing a big string for this argument is CPU consuming. Nothing prevents you from using a different identifier if your barcode reader supports it.
It is possible to encode the data on a maximum of 16 different barcodes.Returnsbool -true on success,false on failure -
GetFNC1()
—
Gets if the FNC1 is activated
DescriptionGets if the FNC1 is activated.
See SetFNC1() for more details.Returnsint - constant value defined inSetFNC1() -
SetFNC1(int
fnc1Type , stringfnc1Id ) — Transforms your barcode in GS1 or AIM standardDescriptionThis method will transform your barcode to accept FNC1 to be GS1 standard or AIM standard.
The first argument can be:
-BCGqrcode.Fnc1.None : The code will not follow any standards.
-BCGqrcode.Fnc1.Gs1 : The code will follow the GS1 standard. The second argument is not used. Separate GS1 identifiers by %. To write a %, write it double %%.
-BCGqrcode.Fnc1.Aim : The code will follow the AIM standard. The second argument must be used, it is the application indicator. It must be a letter (string) or 2 digits (integer).
The default value isBCGqrcode.Fnc1.None . -
GetAcceptECI()
—
Gets if ECI codes are accepted
DescriptionGets if ECI codes are accepted.
See SetAcceptECI() for more details.Returnsbool -
SetAcceptECI(bool
accept ) — Specifies to accepts the ECI codesDescriptionBy settingtrue in this argument, the backslash characters (ASCII 92 \) will be processed as special characters. These are the special characters you can write.
- \\ : Writes a simple backslash
- \xxxxxx : Writes the ECI xxxxxx character with x representing an integer from 0 to 9
The default value is false. -
GetQuietZone()
—
Gets if the quiet zone will be drawn
Returns
bool -true if activated,false otherwise -
SetQuietZone(bool
quietZone ) — Specifies to draw a quiet zone around the barcodeDescriptionTo be read correctly, the QRCode must have a quiet zone around the image. You can, however, turn this off.
The default value is true. -
GetMirror()
—
Gets if the barcode is in mirror mode
DescriptionGets if the barcode is in mirror mode.Returns
bool -true if activated,false otherwise -
SetMirror(bool
mirror ) — Specifies to draw the barcode in mirrorDescriptionIt is possible to read the barcode in mirror mode. If you set this variable totrue , the barcode will be drawn in mirror.
The default value is false. -
GetMask()
—
Gets the mask for the encoding
DescriptionGets the mask for the encoding.Returns
int - value between -1 and 8 -
SetMask(int
mask ) — Specifies a mask to use instead of calculating oneDescriptionQRCode calculates 8 different masks before drawing the code. A mask allows changing the appearance of the barcode in order to make it more readable for a barcode reader. Mathematical operations are executed on every mask to verify which one would fit the best. Those operations are highly CPU consuming. If the generation speed is important for you, you may want to consider forcing a specific mask. Note that your barcode may become hard to read or unreadable.
If your barcode is a Micro, the validmask are 0 to 3.
If your barcode is a Full, the validmask are 0 to 7.
If you set -1, the mask is selected automatically.
The default value is -1. -
SetQRSize(int
qrSize , boolqrMicro ) — Specifies the size to use for the barcodeDescriptionBarcode Bakery will pick the smallest barcode size based on the information you provide.
If you wish to have a specific size, you can force the size with this method.
The first argument is the barcode version, and the second indicates if you want a Micro mode.
IfqrMicro is set totrue , the validqrSize are 1 to 4.
IfqrMicro is set tofalse , the validqrSize are 1 to 40.
If you set -1, the barcode size will be picked automatically. The second argument doesn't matter in that case; if you want to have a Micro or a Full barcode, see the methodSetSize() .
The default value is -1.
-
SetScaleX(int
scaleX ) — Sets the scaling X for the barcodeDescriptionThe width in pixel of one module.
The default value is 1.
Note that this method is protected. -
SetScaleY(int
scaleY ) — Sets the scaling Y for the barcodeDescriptionThe height in pixel of one module.
The default value is 1.
Note that this method is protected.
-
Parse(string
text ) — Analyzes atext message to draw afterwardsDescriptionThe data you pass to thetext argument must be supported by the type of barcode you use.
Check each barcode's introduction section to obtain more information on how to use this method within each symbology. -
Draw(Graphics
image ) — Draws the barcode on theimage DescriptionThe value of theimage argument must be an image resource. The size of the image can be defined by the value received fromGetDimension() . -
GetDimension(int
width , intheight ) — Returns an array containing the required size for the imageDescriptionReturns an array in which the first index is the image width and the second index is the image height.
The arguments are used to specify the starting point of the drawing. Should be 0 for both.
TheBCGDrawing class uses this method to create the image resource.Returnsarray(int, int) - [0] is the width, [1] is the height -
GetScale()
—
Gets the scale of the barcode
DescriptionGets the scale of the barcode. The value is the number of the "smallest" unit in pixel.Returns
int - value in pixels -
SetScale(int
scale ) — Sets the scale of the barcodeDescriptionThe barcode will bex times bigger. Then a pixel will bex byx for its size. -
GetForegroundColor()
—
Gets the color of the bars
DescriptionGets the color of the bars of the barcode.Returns
-
SetForegroundColor(BCGColor
color ) — Sets the color of the bars -
GetBackgroundColor()
—
Gets the color of the spaces
DescriptionGets the color of the spaces of the barcode.Returns
-
SetBackgroundColor(BCGColor
color ) — Sets the color of the spaces -
SetColor(BCGColor
foregroundColor , BCGColorbackgroundColor ) — Sets the color of the bars and spacesDescriptionAn easy and fast method to set the color of the bars and spaces. Check theSetForegroundColor() andSetBackgroundColor() . -
GetOffsetX()
—
Gets the X offset
DescriptionGets the X offset of the barcode in pixels. The value isn't multiplied by the scale.Returns
int - value in pixels -
SetOffsetX(int
value ) — Sets the X offsetDescriptionSpecifies the X offset of the barcode in pixels multiplied by the scale. The required size returned byGetDimension() will be modified accordingly. -
GetOffsetY()
—
Gets the Y offset
DescriptionGets the Y offset of the barcode in pixels. The value isn't multiplied by the scale.Returns
int - value in pixels -
SetOffsetY(int
value ) — Sets the Y offsetDescriptionSpecifies the Y offset of the barcode in pixels multiplied by the scale. The required size returned byGetDimension() will be modified accordingly. -
AddLabel(BCGLabel
label ) — Adds a label to the graphicDescriptionAdds aBCGLabel object to the drawing. -
RemoveLabel(BCGLabel
label ) — Removes a label from the graphicDescriptionRemoves a specificBCGLabel object from the drawing. -
ClearLabels()
—
Removes the labels from the graphic
DescriptionClears the
BCGLabel objects from the drawing.