Thanks for the reply.
The PDF is created by the code. I pretty much used code similar to the examples provided with the toolkit:
1. Used Device object to get the scanned image and load it into the DcoumentViewer:
acqScanner is the Acquisition objects
Device sel_device;
.....
sel_device.ModalAcquire = true;
sel_device.Acquire();
/*
* The event ImageAcquired is raised when the image has been completely scanned
*/
private void acqScanner_ImageAcquired(object sender, AcquireEventArgs e)
{
this.dvScannedDoc.Add(AtalaImage.FromBitmap(e.Image), "", "");
...
}
2. Use PdfEncoder to save the image to a PDF file:
fileName is a string with a full path to the new pdf file
...
this.dvScannedDoc.Save(fileName, new PdfEncoder());
...
On a couple of computers the PDF file is created properly and it can be opened using Adobe Reader. On the third one it appears as a blank image.
All three computers used different scanners. I run it successfully with Cannon CanoScan 4400F. Then I sent my prototype to someone else. They run it successfully on one PC and experienced the problem with blank PDF on another. I don't know all the details and I asked them to answer the questions about the scanner but I know that the scanners are different.