Dev Center
Table of contents

Document Saving

Can I insert newly scanned pages to an existing document?

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 might want to insert these new images to a specified index.

Unfortunately, Dynamic Web TWAIN does not provide a native method for that, but you can utilize the property IfAppendImage to achieve it. You can load some images from your local disk first, and then acquire images from your device with IfAppendImage set to ‘false’.

The following code snippet shows how it can be done.

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();
}

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);
}

Is this page helpful?

YesYes NoNo

In this article:

latest version

    • Latest Version
    • Version 17.1.1
    • Version 17.0
    • Version 16.2
    • Version 16.1.1
    Change +
    © 2003–2022 Dynamsoft. All rights reserved.
    Privacy Statement / Site Map / Home / Purchase / Support