谢谢

解决方案 »

  1.   

    设置image的align=clclient,然后读出土的大小后设置scrollbox的滚动条的rang就可以了。
      

  2.   

    将image放到Scrollbox上,然后把image设置Stretch=true ,image读入图像后,设置
    image.width:=image.picture.width
    image.height:=image1.picture.height
    也就是让它的比例为1:1显示就可以了!
      

  3.   

    to  wooden954(wooden):
    我也是用你这种方法解决问题的?但不用将image设置Stretch=true 。
      

  4.   

    将image放到Scrollbox上,然后把image设置
    autosize=true
    left=0
    top=0
      

  5.   

    ScrollBox1.HorzScrollBar.Range:= image1.Picture.Width;
    ScrollBox1.VertScrollBar.Range:= image1.Picture.Height;
      

  6.   

    to: gub(bub)
    你写的代码不对吧