Load & Save
Properties |
---|
IfShowFileDialog |
Events | |
---|---|
OnGetFilePath | OnPostLoad |
Code example
The following code example demonstrates how to use the APIs above to perform basic scanning.
var imagedata;
DWObject.SelectedImagesCount = 1;
DWObject.SetSelectedImageIndex(0,0);
DWObject.GetSelectedImagesSize(EnumDWT_ImageType.IT_JPG);
imagedata = DWObject.SaveSelectedImagesToBase64Binary();
DWObject.LoadImageFromBase64Binary(imagedata, EnumDWT_ImageType.IT_JPG, function(){
console.log('success');
},function(){
console.log('failure');
});
Methods
FileExists() | |
---|---|
This API has been removed in version 15.3. |
LoadDibFromClipboard() | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Loads a DIB image from the system clipboard into Dynamic Web TWAIN. | |||||||||||
Syntax | .LoadDibFromClipboard([optionalAsyncSuccessFunc, optionalAsyncFailureFunc]); | ||||||||||
Parameters |
The following two parameters are optional. If either one exists or both exist, the method is asynchronous, otherwise it's synchronous.OnSuccess Function optional optionalAsyncSuccessFunc : callback function triggered when the file is loaded successfully. OnFailure Function optional optionalAsyncFailureFunc : callback function triggered when the file failed to be loaded.
|
||||||||||
Return value | boolean Only valid when used synchronously. |
||||||||||
Availability |
|
LoadImage() | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Loads local image(s) into the Dynamic Web TWAIN buffer. | |||||||||||
Syntax | .LoadImage(fileName, [optionalAsyncSuccessFunc, optionalAsyncFailureFunc]); | ||||||||||
Parameters |
string fileName : the absolute path to the file to be opened. The following two parameters are optional. If either one exists or both exist, the method is asynchronous, otherwise it's synchronous. OnSuccess Function optional optionalAsyncSuccessFunc : callback function triggered when the file is loaded successfully. OnFailure Function optional optionalAsyncFailureFunc : callback function triggered when the file failed to be loaded.
|
||||||||||
Return value | boolean Only valid when used synchronously. |
||||||||||
Example |
|
||||||||||
Availability |
|
||||||||||
Usage notes | Dynamic Web TWAIN processes the image format according to the extension of fileName . |
LoadImageEx() | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Loads local image(s) into Dynamic Web TWAIN. | |||||||||||
Syntax | .LoadImageEx(fileName, imageType, [optionalAsyncSuccessFunc, optionalAsyncFailureFunc]); | ||||||||||
Parameters |
string fileName : the absolute path to open the file. EnumDWT_ImageType (int) imageType : the image format. The following two parameters are optional. If either one exists or both exist, the method is asynchronous, otherwise it's synchronous. OnSuccess Function optional optionalAsyncSuccessFunc : callback function triggered when the file is loaded successfully. OnFailure Function optional optionalAsyncFailureFunc : callback function triggered when the file failed to be loaded.
|
||||||||||
Return value | boolean Only valid when used synchronously. |
||||||||||
Example |
|
||||||||||
Availability |
|
||||||||||
Usage notes | If you would like to load/open images by showing the 'Open File' dialog box, you can set IfShowFileDialog to true. |
LoadImageFromBase64Binary() | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Load image(s) from a base64 string. | |||||||||||
Syntax | .LoadImageFromBase64Binary(imageData, imageType, [optionalAsyncSuccessFunc, optionalAsyncFailureFunc]); | ||||||||||
Parameters |
string imageData : the base64 string that represents the image. EnumDWT_ImageType (int) imageType : the image format. The following two parameters are optional. If either one exists or both exist, the method is asynchronous, otherwise it's synchronous. OnSuccess Function optional optionalAsyncSuccessFunc : callback function triggered when the operation succeeds. OnFailure Function optional optionalAsyncFailureFunc : callback function triggered when the operation fails.
|
||||||||||
Return value | boolean |
||||||||||
Example |
|
||||||||||
Availability |
|
SaveAllAsMultiPageTIFF() | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Saves all the images in the buffer as a Multipage TIFF file. | |||||||||||
Syntax | .SaveAllAsMultiPageTIFF(fileName, [optionalAsyncSuccessFunc, optionalAsyncFailureFunc]); | ||||||||||
Parameters |
string fileName : the absolute path to save the file. The following two parameters are optional. If either one exists or both exist, the method is asynchronous, otherwise it's synchronous. OnSuccess Function optional optionalAsyncSuccessFunc : callback function triggered when the file is saved successfully. OnFailure Function optional optionalAsyncFailureFunc : callback function triggered when the file failed to be saved.
|
||||||||||
Return value | boolean Only valid when used synchronously. |
||||||||||
Example |
|
||||||||||
Availability |
|
||||||||||
Usage notes | Multi-Page TIFF encoding is a built-in feature of Dynamic Web TWAIN, no extra dlls are required.
If you would like to save images by showing the 'Save File' dialog box, you can set IfShowFileDialog to true. |
SaveAllAsPDF() | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Saves all the images in the buffer as a Multipage PDF file. | |||||||||||
Syntax | .SaveAllAsPDF(fileName, [optionalAsyncSuccessFunc, optionalAsyncFailureFunc]); | ||||||||||
Parameters |
string fileName
: the absolute path to save the file.The following two parameters are optional. If either one exists or both exist, the method is asynchronous, otherwise it's synchronous. OnSuccess Function optional optionalAsyncSuccessFunc : callback function triggered when the file is saved successfully. OnFailure Function optional optionalAsyncFailureFunc : callback function triggered when the file failed to be saved. |
||||||||||
Return value | boolean Only valid when used synchronously. |
||||||||||
Example |
|
||||||||||
Availability |
|
||||||||||
Usage notes | Multi-Page PDF encoding is a built-in feature of Dynamic Web TWAIN, no extra dlls are required.
If you would like to save images by showing the 'Save File' dialog box, you can set IfShowFileDialog to true. |
SaveAsBMP() | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Saves the image of a specified index in the buffer as a BMP file. | |||||||||||
Syntax | .SaveAsBMP(fileName, sImageIndex, [optionalAsyncSuccessFunc, optionalAsyncFailureFunc]); | ||||||||||
Parameters |
string fileName
: the absolute path on the client machine to save the file.number sImageIndex
: the index of the image in the buffer. The index is 0-based.The following two parameters are optional. If either one exists or both exist, the method is asynchronous, otherwise it's synchronous. OnSuccess Function optional optionalAsyncSuccessFunc : callback function triggered when the file is saved successfully. OnFailure Function optional optionalAsyncFailureFunc : callback function triggered when the file failed to be saved. |
||||||||||
Return value | boolean Only valid when used synchronously. |
||||||||||
Example |
|
||||||||||
Availability |
|
||||||||||
Usage notes | If you would like to save images by showing the 'Save File' dialog box, you can set IfShowFileDialog to true. |
SaveAsJPEG() | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Saves the image of a specified index in the buffer as a JPEG file. | |||||||||||
Syntax | .SaveAsJPEG(fileName, sImageIndex, [optionalAsyncSuccessFunc, optionalAsyncFailureFunc]); | ||||||||||
Parameters |
string fileName
: the absolute path on the client machine to save the file.number sImageIndex
: the index of the image in the buffer. The index is 0-based.The following two parameters are optional. If either one exists or both exist, the method is asynchronous, otherwise it's synchronous. OnSuccess Function optional optionalAsyncSuccessFunc : callback function triggered when the file is saved successfully. OnFailure Function optional optionalAsyncFailureFunc : callback function triggered when the file failed to be saved. |
||||||||||
Return value | boolean Only valid when used synchronously. |
||||||||||
Example |
|
||||||||||
Availability |
|
||||||||||
Usage notes | If you would like to save images by showing the 'Save File' dialog box, you can set IfShowFileDialog to true. |
SaveAsPDF() | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Saves the image of a specified index in the buffer as a PDF file. | |||||||||||
Syntax | .SaveAsPDF(fileName, sImageIndex, [optionalAsyncSuccessFunc, optionalAsyncFailureFunc]); | ||||||||||
Parameters |
string fileName
: the absolute path on the client machine to save the file.number sImageIndex
: the index of the image in the buffer. The index is 0-based.The following two parameters are optional. If either one exists or both exist, the method is asynchronous, otherwise it's synchronous. OnSuccess Function optional optionalAsyncSuccessFunc : callback function triggered when the file is saved successfully. OnFailure Function optional optionalAsyncFailureFunc : callback function triggered when the file failed to be saved. |
||||||||||
Return value | boolean Only valid when used synchronously. |
||||||||||
Example |
|
||||||||||
Availability |
|
||||||||||
Usage notes | If you would like to save images by showing the 'Save File' dialog box, you can set IfShowFileDialog to true. |
SaveAsPNG() | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Saves the image of a specified index in the buffer as a PNG file. | |||||||||||
Syntax | .SaveAsPNG(fileName, sImageIndex, [optionalAsyncSuccessFunc, optionalAsyncFailureFunc]); | ||||||||||
Parameters |
string fileName
: the absolute path on the client machine to save the file.number sImageIndex
: the index of the image in the buffer. The index is 0-based.The following two parameters are optional. If either one exists or both exist, the method is asynchronous, otherwise it's synchronous. OnSuccess Function optional optionalAsyncSuccessFunc : callback function triggered when the file is saved successfully. OnFailure Function optional optionalAsyncFailureFunc : callback function triggered when the file failed to be saved. |
||||||||||
Return value | boolean Only valid when used synchronously. |
||||||||||
Example |
|
||||||||||
Availability |
|
||||||||||
Usage notes | If you would like to save images by showing the 'Save File' dialog box, you can set IfShowFileDialog to true. |
SaveAsTIFF() | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Saves the image of a specified index in the buffer as a TIFF file. | |||||||||||
Syntax | .SaveAsTIFF(fileName, sImageIndex, [optionalAsyncSuccessFunc, optionalAsyncFailureFunc]); | ||||||||||
Parameters |
string fileName
: the absolute path on the client machine to save the file.number sImageIndex
: the index of the image in the buffer. The index is 0-based.The following two parameters are optional. If either one exists or both exist, the method is asynchronous, otherwise it's synchronous. OnSuccess Function optional optionalAsyncSuccessFunc : callback function triggered when the file is saved successfully. OnFailure Function optional optionalAsyncFailureFunc : callback function triggered when the file failed to be saved. |
||||||||||
Return value | boolean Only valid when used synchronously. |
||||||||||
Example |
|
||||||||||
Availability |
|
||||||||||
Usage notes | If you would like to save images by showing the 'Save File' dialog box, you can set IfShowFileDialog to true. |
SaveSelectedImagesAsMultiPagePDF() | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Saves the selected images in the buffer as a Multipage PDF file. | |||||||||||
Syntax | .SaveSelectedImagesAsMultiPagePDF(fileName, [optionalAsyncSuccessFunc, optionalAsyncFailureFunc]); | ||||||||||
Parameters |
string fileName
: the absolute path on the client machine for saving the file.The following two parameters are optional. If either one exists or both exist, the method is asynchronous, otherwise it's synchronous. OnSuccess Function optional optionalAsyncSuccessFunc : callback function triggered when the file is saved successfully. OnFailure Function optional optionalAsyncFailureFunc : callback function triggered when the file failed to be saved. |
||||||||||
Return value | boolean Only valid when used synchronously. |
||||||||||
Example |
|
||||||||||
Availability |
|
||||||||||
Usage notes | Multi-Page PDF encoding is a built-in feature of Dynamic Web TWAIN, no extra dlls are required.
If you would like to save images by showing the 'Save File' dialog box, you can set IfShowFileDialog to true. |
SaveSelectedImagesAsMultiPageTIFF() | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Saves the selected images in the buffer as a Multipage TIFF file. | |||||||||||
Syntax | .SaveSelectedImagesAsMultiPagePDF(fileName, [optionalAsyncSuccessFunc, optionalAsyncFailureFunc]); | ||||||||||
Parameters |
string fileName
: the absolute path to save the file.The following two parameters are optional. If either one exists or both exist, the method is asynchronous, otherwise it's synchronous. OnSuccess Function optional optionalAsyncSuccessFunc : callback function triggered when the file is saved successfully. OnFailure Function optional optionalAsyncFailureFunc : callback function triggered when the file failed to be saved. |
||||||||||
Return value | boolean Only valid when used synchronously. |
||||||||||
Example |
|
||||||||||
Availability |
|
||||||||||
Usage notes | Multi-Page TIFF encoding is a built-in feature of Dynamic Web TWAIN, no extra dlls are required.
If you would like to save images by showing the 'Save File' dialog box, you can set IfShowFileDialog to true. |
SaveSelectedImagesToBase64Binary() | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Saves the selected images in the buffer to a base64 string. | |||||||||||
Syntax | .SaveSelectedImagesToBase64Binary(); | ||||||||||
Parameters |
None
|
||||||||||
Return value | string The result string is the pure base64 string with no extra info. For example, "/9j/4AAQSkZJRgABA..." . To use the string in most circumstances, you need to add extra info like data:image/png;base64,"/9j/4AAQSkZJRgABA..." . |
||||||||||
Example |
|
||||||||||
Availability |
|
||||||||||
Usage notes | Please invoke GetSelectedImagesSize before invoking this method to specify the target format. The default value is IT_JPG and it doesn't support black and white images. |
ShowFileDialog() | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Show the system's save-file dialog or open-file dialog. | |||||||||||
Syntax | .ShowFileDialog(bSave, filter, filterIndex, defaultExtension, initialDir, allowMultiSelect, overwritePrompt, flags); | ||||||||||
Parameters |
boolean bsave : true -- show save-file dialog, false -- show open-file dialog. string filter : the filter name specifies the filter pattern (for example, "JPG | *.jpg"). To specify multiple filter patterns use a semicolon to separate the patterns (for example, "JPG, PNG and TIF | *.jpg;*.png;*.tif" or "JPG, PNG , TIF" for macOS). A pattern string can be a combination of valid file extensions with asterisk (*). Do not include spaces in the pattern string. To show all files, use the string "All Files | *.*". int filterIndex : determines the index for the filter string we set, in other words, where the filter string should appear in the dialog's filters drop-down box. By default, it's 0 and you don't need to change it. This parameter doesn't work on macOS. string defaultExtension : define the default extension which will be appended to the file name. Only useful when you try to save an image or images. If this member is NULL and the user fails to type an extension, no extension is appended. string initialDir : the initial directory. The algorithm for selecting the initial directory varies on different platforms. boolean allowMultiSelect : true -- allow multiple selections, false -- only allow single file selection. boolean overwritePrompt : true -- if a file already exists with the same name, the user needs to confirm before the existing file is overwritten, false -- if a file already exists with the same name, it will be overwritten without further user confirmation. int flags : if this parameter equals 0, the program will be initiated with the custom settings. Otherwise it will be initiated with default flags, which means allowMultiSelect and overwritePrompt will not work. |
||||||||||
Return value | boolean |
||||||||||
Example |
|
||||||||||
Availability |
|
||||||||||
Usage notes | For Mac Edition, the method performs differently. This method will trigger OnGetFilePath event even when it fails. If multiple files are selected, the event will be called multiple times. |
Properties
IfShowFileDialog | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns or sets whether to show open/save file dialog when saving scanned images or loading images from a local directory. | |||||||||||
Type | boolean |
||||||||||
Accessors | Get Set |
||||||||||
Availability |
|
||||||||||
Usage notes | When loading, the property only works for the method LoadImageEx . |
Events
OnGetFilePath | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
This event is triggered when a file path is returned from the operating system this occurs when the ShowFileDialog method is called or when the LoadImageEx method is called with IfShowFileDialog set to true. |
|||||||||||
Syntax | .RegisterEvent('OnGetFilePath',function(bSave, filesCount, index, path, filename){...}); | ||||||||||
Arguments |
|
||||||||||
Example |
|
||||||||||
Availability |
|
OnPostLoad | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
This event is triggered when an image file from a local directory has been loaded into the control. | |||||||||||
Syntax | .RegisterEvent('OnPostLoad',function(path, name, type){...}); | ||||||||||
Arguments |
|
||||||||||
Example |
|
||||||||||
Availability |
|
||||||||||
Usage notes | If multiple image files are loaded, this event will be triggered once for each image. |