PDF417 barcode is a popular high-density, two-dimensional barcode with symbology that possesses the capability to encode up to 1108 bytes of information. This barcode comprises a stacked set of small barcodes and can encode up to 35 alphanumeric characters and 2,710 numeric characters.
A screenshot depicting PDF417 barcode sparkline is shared below.
You can set PDF417 sparkline in a worksheet using the following formula:
=BC_PDF417(value, color, backgroudColor, errorCorrectionLevel, rows, columns, compact, quietZoneLeft, quietZoneRight, quietZoneTop, quietZoneBottom)
Name | Description |
---|---|
value | A string that represents encode on the symbol of QRCode. |
color | A color that represents the barcode color. The default value is 'rgb(0,0,0)'. |
backgroundColor | A color that represents the barcode backgroundcolor. The default value is 'rgb(255, 255, 255)' |
errorCorrectionLevel | A string that represents the error correction level of PDF417. It has 'auto|0-8' values. The default value is 'auto'. |
rows | A value that specifies the number of rows in the symbol. It has 'auto|3-90' values.The default value is 'auto'. |
columns | A value that specifies the number of columns in the symbol. It has 'auto|1-30' values. The default value is 'auto'. |
compact | Specifies whether it is a compact PDF417. The default value is 'false'. |
quietZoneLeft | A value that represents the size of left quiet zone. |
quietZoneRight | A value that represents the size of right quiet zone. |
quietZoneTop | A value that represents the size of top quiet zone. |
quietZoneBottom | A value that represents the size of bottom quiet zone. |
This example code sets PDF417 sparkline in the worksheet.
JavaScript |
Copy Code
|
---|---|
var sheet = spread.getActiveSheet(); // Set PDF417 Barcode Sparkline // Set Style // Set Formula |