Web Demos

BARCODE READER SDK DEMO

Explore the flexibe barcode reading settings to optimize for your specific usage scenario.

WEB TWAIN SDK DEMO

Try the most popular web scanner features: scan images, import local images and PDF files, edit, save to local, upload to database, and etc.

BARCODE READER JAVASCRIPT DEMO

Transform any camera-equipped devices into real-time, browser-based barcode and QR code scanners.

MRZ SCANNER WEB DEMO

Detects the machine-readable zone of a passport, scans the text, and parses into human-readable data.

APP STORE DEMOS

BARCODE READER SDK FOR IOS

BARCODE READER SDK FOR ANDROID

VIEW MORE DEMOS >
Dev Center
Table of contents

How to save selected images as multi-page PDF

From Dynamic .NET TWAIN v7.0, SaveAsMultiPagePDF is removed. ISave interface in PDF module will do the same job. Below is simple code for that:

using Dynamsoft.PDF;
public partial class Form1 : Form,ISave{
            public object GetAnnotations(int iPageNumber)
        {
            return true;      
        }
 
        public Bitmap GetImage(int iPageNumber)
        {
            return m_ImageCore.ImageBuffer.GetBitmap((short)dsViewer1.CurrentSelectedImageIndicesInBuffer[iPageNumber]);
        }
 
        public int GetPageCount()
        {
            return dsViewer1.CurrentSelectedImageIndicesInBuffer.Count; //gets the number of selected images 
        }
}

This page is compatible for:

Version 7.5

Is this page helpful?

YesYes NoNo

In this article:

latest version

    • Latest Version
    © 2003–2023 Dynamsoft. All rights reserved.
    Privacy Statement / Site Map / Home / Purchase / Support