C#缩小图片后截图问题
各位:我有一幅静态图比较大,把它缩小后,在上面画一个矩形框,然后截取下来后发现保存后的图片还是原图片的位置请问是哪方面的原因
Bitmap s_image = new Bitmap(range.Width, range.Height);
Graphics s_graphics = Graphics.FromImage(s_image);
s_graphics.DrawImage(pictureBox1.Image, 0, 0, new RectangleF(range.X, range.Y, range.Width, range.Height), GraphicsUnit.Pixel);