Dev Center
By default, when you scan or load images, they are appended to the end of the image array in buffer. However, in some business scenarios, the user may want to insert these new images to a specified index. Unfortunately, Dynamic Web Twain does not provide a native method for that. The following code snippet shows how this functionality can be implemented.
1. Insert when acquiring
function acquireToIndex(index) {
DWObject.IfAppendImage = false;
DWObject.CurrentImageIndexInBuffer = index;
DWObject.RegisterEvent("OnPostTransfer", function () {
DWObject.CurrentImageIndexInBuffer++;
});
DWObject.RegisterEvent("OnPostAllTransfers", function () {
DWObject.IfAppendImage = true;
});
DWObject.AcquireImage();
}
2. Insert when loading
function loadToIndex(index) {
var oldCount = DWObject.HowManyImagesInBuffer;
DWObject.RegisterEvent("OnPostLoad", function () {
var newCount = DWObject.HowManyImagesInBuffer;
for (var j = 0; j < newCount - oldCount; j++)
DWObject.MoveImage(oldCount + j, index + j);
});
DWObject.LoadImageEx("", 5);
}
latest version