Search found 1 match

by chen_jon
Wed Nov 05, 2008 6:54 am
Forum: VintaSoft Twain .NET SDK Discussions
Topic: Save Multi-images PDF as stream into SQlserver
Replies: 1
Views: 5992

Save Multi-images PDF as stream into SQlserver

Hi, I used the following code to save multi-page images as PDF into table. But it only saves the last image: bool firstImage=true; System.IO.MemoryStream mem=null; try { while (m_TwainObject.AcquireModal()) { if (firstImage) { mem = m_TwainObject.GetImageAsStream(0, ImageFileFormat.PDF); firstImage ...