在c#和Visual Studio Windows窗体中,我已将图像加载到图片框(pictureBox2)中,然后将其裁剪并显示在另一个图片框(pictureBox3)中。
现在我想将pictureBox3中的内容保存为图像文件。
我该怎么做?
private void crop_bttn_Click(object sender, EventArgs e)
{
Image crop = GetCopyImage("grayScale.jpg");
pictureBox2.Image = crop;
Bitmap sourceBitmap = new Bitmap(pictureBox2.Image,
pictureBox2.Width, pictureBox2.Height);
Graphics g = pictureBox3.CreateGraphics();
g.DrawImage(sourceBitmap, new Rectangle(0, 0,
pictureBox3.Width, pictureBox3.Height), rectCropArea, GraphicsUnit.Pixel);
sourceBitmap.Dispose();
}
答案 0 :(得分:1)
除非您知道自己在做什么,否则不应使用方法PictureBox.CreateGraphics()
,因为它可能会导致一些不那么明显的问题。例如,在您的场景中,当您最小化窗口或调整窗口大小时,pictureBox3
中的图像将消失。
更好的方法是绘制一个位图,您也可以保存:
var croppedImage = new Bitmap(pictureBox3.Width, pictureBox3.Height);
var g = Graphics.FromImage(croppedImage);
g.DrawImage(crop, new Point(0, 0), rectCropArea, GraphicsUnit.Pixel);
g.Dispose();
//Now you can save the bitmap
croppedImage.Save(...);
pictureBox3.Image = croppedImage;
顺便说一句,请使用更合理的变量名,尤其是pictureBox1..3
。
答案 1 :(得分:1)
从不使用control.CreateGraphics
! 要么使用Bitmap bmp
在控件的Graphics g = Graphics.FromImage(bmp)
事件中使用Paint
或,请使用e.Graphics
参数..
这是一个裁剪代码,它会绘制一个新的Bitmap并使用你的控件等,但会改变一些事情:
Graphics
Bitmap
对象
using
条款来确保它不会泄漏pictureBox3.ClientSize
的大小,因此它不会包含任何边框.. private void crop_bttn_Click(object sender, EventArgs e)
{
Image crop = GetCopyImage("grayScale.jpg");
pictureBox2.Image = crop;
Bitmap targetBitmap = new Bitmap(pictureBox3.ClientSize.Width,
pictureBox3.ClientSize.Height);
using (Bitmap sourceBitmap = new Bitmap(pictureBox2.Image,
pictureBox2.ClientSize.Width, pictureBox2.ClientSize.Height))
{
using (Graphics g = Graphics.FromImage(targetBitmap))
{
g.DrawImage(sourceBitmap, new Rectangle(0, 0,
pictureBox3.ClientSize.Width, pictureBox3.ClientSize.Height),
rectCropArea, GraphicsUnit.Pixel);
}
}
if (pictureBox3.Image != null) pictureBox3.Image.Dispose();
pictureBox3.Image = targetBitmap;
targetBitmap.Save(somename, someFormat);
}
替代方案是......:
Paint
为Graphics g = pictureBox3.CreateGraphics();
Graphics g = e.Graphics;