Skip to content

Latest commit

 

History

History
77 lines (53 loc) · 1.74 KB

File metadata and controls

77 lines (53 loc) · 1.74 KB
layout title description keywords needAutoGenerateSidebar permalink
default-layout
PDF417Details Class - Dynamsoft Barcode Reader SDK Java Edition API Reference
This page shows the PDF417Details Class of Dynamsoft Barcode Reader SDK Java Edition API Reference.
PDF417Details, class, api reference, java
false
/programming/java/api-reference/class/PDF417Details.html

PDF417Details

Stores the PDF417 details.

Attributes

Attribute Type
moduleSize int
rows int
columns int
errorCorrectionLevel int
hasLeftRowIndicator int
hasRightRowIndicator int

moduleSize

The barcode module size (the minimum bar width in pixel).

int com.dynamsoft.dbr.PDF417Details.moduleSize

rows

The row count of the barcode.

int com.dynamsoft.dbr.PDF417Details.rows

columns

The column count of codewords between the left and right row indicators, where the actual data and the ECC is encoded.

int com.dynamsoft.dbr.PDF417Details.columns

errorCorrectionLevel

The error correction level of the barcode.

int com.dynamsoft.dbr.PDF417Details.errorCorrectionLevel

hasLeftRowIndicator

Whether the left row indicator of the PDF417 code exists.

  • 0: left row indicator does not exist
  • 1: left row indicator exists
int com.dynamsoft.dbr.PDF417Details.hasLeftRowIndicator

hasRightRowIndicator

Whether the right row indicator of the PDF417 code exists.

  • 0: right row indicator does not exist
  • 1: right row indicator exists
int com.dynamsoft.dbr.PDF417Details.hasRightRowIndicator