Thanks for Downloading Dynamic Web TWAIN 30-Day Trial!
Your download will start shortly. If your download does not begin, click here to retry.
Image Editing
Do you support image deskew?
Generally, there are two ways to automatically deskew an image.
Enable the capability of a scanner
Applicable only to compatible TWAIN scanners
There is a standard TWAIN capability called ICAP_AUTOMATICDESKEW
which, when enabled, does the deskewing of all scanned images automatically. If your scanner supports this capability, you can enable the functionality through Dynamic Web TWAIN
using the API IfAutomaticDeskew
DWTObject.OpenSource();
DWTObject.IfAutomaticDeskew = true;
Use Dynamic Web TWAIN to deskew an image as it is scanned
The function
deskew()
below is applicable to all platforms. The event OnPostTransferAsync is only triggered during scanning
function deskew(index) {
DWTObject.GetSkewAngle(
index,
function(angle) {
console.log("skew angle: " + angle);
DWTObject.Rotate(index, angle, true,
function() {
console.log("Successfully deskewed an image!");
},
function(errorCode, errorString) {
console.log(errorString);
}
);
},
function(errorCode, errorString) {
console.log(errorString);
}
);
}
DWTObject.RegisterEvent("OnPostTransferAsync", function(info) {
deskew(DWTObject.ImageIDToIndex(info.imageId));
});