Thanks for downloading Dynamsoft Barcode Reader Package!
Your download will start shortly. If your download does not begin, click here to retry.
BarcodeReader
Decode MethodsMethod | Description |
---|---|
decode |
Decode barcodes from images, binary data, URLs, and more. |
decodeBase64String |
Decode barcodes from a base64 encoded string. |
decodeBuffer |
Decode barcodes from raw buffer. |
decodeUrl |
Decode barcodes from a URL. |
Decode barcodes from various sources, including binary data, images, base64 (with MIME type), URLs, etc.
decode(source) returns Promise
source *Blob |
Buffer | ArrayBuffer | Uint8Array | Uint8ClampedArray | HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | string* |
Promise<TextResult[]>
Read barcodes from live camera
Decode barcodes from a base64 string with or without MIME type. For example, with MIME type specified: data:image/jpg;base64,Xfjshekk...
and without: Xfjshekk....
decodeBase64String(base64) returns Promise
base64
string
Promise<TextResult[]>
Read barcodes from live camera
Decode barcodes from raw buffer.
decodeBuffer(buffer, width, height, stride, format, config) returns Promise
buffer
Uint8Array | Uint8ClampedArray | ArrayBuffer | Blob | Buffer
width
number
height
number
stride
number
format
EnumImagePixelFormat
config
optional any
Promise<any>
Read barcodes from live camera
Decode barcodes from URLs. The URL source must be in the same domain or allows Cross-Origin Resource Sharing (CORS).
decodeUrl(url) returns Promise
url
string
Promise<TextResult[]>
latest version