寻找扫描(免费)控件
要求就是  可以连续扫描  保存一张PDF格式的图片

解决方案 »

  1.   

    he setup program for Imaging (tool that ships with Windows > 98) installs the Image Scan control (OCX) and the 32-bit TWAIN DLLs. All you have to do is to import this ActiveX control in Delphi and generate a component wrapper
    if ImgScan1.ScannerAvailable then 
      try  
        ImgScan1.OpenScanner; 
        ImgScan1.ScanTo := 2;    
        ImgScan1.Image:='c:\MyPicture.gif'; 
        ImgScan1.StartScan ; 
        Application.ProcessMessages; 
      finally  
        ImgScan1.CloseScanner ; 
      end;However this ActiveX is not shipped with Windows XP. You can also check out the delphitwain. project at sourceforge (delphitwain.sourceforge.net) or pdflib at www.pdflib.com