Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 722 Bytes

File metadata and controls

27 lines (21 loc) · 722 Bytes
layout title description keywords needAutoGenerateSidebar noTitleIndex breadcrumbText permalink
default-layout
Interface - ImageSource - Dynamsoft Barcode Reader JavaScript API
This page shows the ImageSource interface of Dynamsoft Barcode Reader for JavaScript.
imagesource, javascript, interface
false
true
Point
/programming/javascript/api-reference/interface/imagesource.html

ImageSource

Interface that defines an Image Source.

Members

getImage()

Returns an image from the Image Source.

/**
 * @param index Specifies the index of the image. If undefined, the Image Source will determine which image to return.
 */ 
getImage(index?: number): Promise<DSImage> | DSImage;