哪位提供个代码,要求
当鼠标移到图片时,原图片不变,再上浮个放大2倍的图片,
麻烦写下实现步骤

解决方案 »

  1.   

    用此方法,首先要获取原始图象的Image对象,然后创建一个空白的图片:
    Bitmap bmp = new Bitmap( 宽,高);此宽,高应是原始图像的宽/高的2倍
    Graphics g = Graphics.FromImage( bmp );
    g.DrawImage( 原始图片,0,0,bmp.Width,bmp.Height );
      

  2.   

    如何实现对一个picturebox中的照片局部放大?
    http://topic.csdn.net/t/20030623/22/1948952.html
      

  3.   

    http://topic.csdn.net/t/20030623/22/1948952.html
    这里有你要的答案