我现在想把 图片统一
一下尺寸 比如500X500
不是显示的尺寸是实际的尺寸

解决方案 »

  1.   

    你看看image类吧。现在 我在上班。无法给你贴代码!你可以使用软件批量修改图片国500X500
    ISEE软件不错。
      

  2.   

    循环你要改变的图形改变可以用Graphics.DrawImage
       Bitmap _NewBitmap =new Bitmap(500,500);
                Graphics _Graphics = Graphics.FromImage(_NewBitmap);
                _Graphics.DrawImage(Image.FromFile("你西药转换的图文件路径"), 0, 0, 500, 500);
                _Graphics.Dispose();
                _NewBitmap.Save("保存的位置", ImageFormat.Jpeg);