我靠!找的我好苦啊!!
告诉我你的信箱,我把我写的组件给你看看
或者你查MSDN里面都有的帮助的。  关键词Imgedit1,ImgScan1...

解决方案 »

  1.   

    我的信箱[email protected]
    楼上的兄弟,我在MSDN里面没有找到帮助信息,请帮忙
      

  2.   

    我已经找到办法让tif文件显示,但是好像地址只支持类似"e:\2.tif"格式,不支持相对路径和网络绝对路径http://...等,因此我放到iis上进行发布的时候还是显示不出来,请高手们指点
      

  3.   

    Private Sub cmdSetImage_Click()
        'Windows filename
        ImgEdit1.Image = "c:\insurance\claims\claim234.tif"
        'Showing syntax for 1.x Server document
        'Note: prefix Image:// denotes service name for 1.x server
        ImgEdit1.Image = "Image://srvrname\volname:\CABNAME\DRAWERNAME\FOLDERNAME\YOUR DOC"
       
        'Showing syntax for 1.x Server filename with a volume name mapped.
        ImgEdit1.Image = "Image://srvrname/volname:/dirname/temp.tif"
        
        'Showing syntax for 3.x Server document
        'Note: prefix Imagex:// denotes service name for 3.x server
        ImgEdit1.Image = "Imagex://docid1234"
       
        'URL syntax
        ImgEdit1.Image = "http://www.eastmansoftware.com/sbu/sampimg.tif"
        
        'UNC filename
        ImgEdit1.Image = "\\srvrname\shared3\images\bw\thisisa.tif"
    End Sub
      

  4.   

    Private Sub ImgEdit1_Load(ByVal Zoom As Double)
        'Here are some examples of default settings you might
        'want to specify prior to displaying an image.    'Repaint any changes immediately (ex. zoom or resolution
        'changes, etc.)
        ImgEdit1.AutoRefresh = True
        
        'ScrollBars already default to true, but this is
        'modifiable if desired
        ImgEdit1.ScrollBars = True
        
        'Scale black and white images to grayscale.  Keep color image
        'displayed as color images.
        ImgEdit1.DisplayScaleAlgorithm = wiScaleOptimize
        
        'Allow user to scroll image using keyboard shortcuts
        ImgEdit1.ScrollShortcutsEnabled = True
        
        'Display all OCR zones
        ImgEdit1.OcrZoneVisibility = wiOcrShowAllZones  '3
    End Sub
      

  5.   

    老天,头都大了,是这样
    我的文件名称为:data_img.tif
    放在我的站点的根目录下data中,
    调用图像的网页文件也在这个目录中
    站点的名称为http://tutu
    在网页网将如何调用才能正常显示呢
      

  6.   

    ImgEdit1.Image = "http://tutu/data_img.tif"
    ImgEdit1.Diaplay以上代码为VB。
    PB应该差不多吧!