在 C# 中将带有背景图像的图像保存到文件中

发布于 2024-11-19 17:03:21 字数 173 浏览 1 评论 0原文

我的表单上有一个图片框,BackgroundImage 属性设置为特定图像。图像的其余部分具有某些透明区域,以便在这些区域中显示背景图像。我想将其保存到文件中,但图片框没有保存方法。 image属性有一个save方法,但是它只保存图像的内容,不包括背景图像。有关如何保存两者的任何提示,以便它在文件中的外观与图片框上的外观完全相同?

I have a picturebox on the form, with BackgroundImage property set to certain image. The rest of the image has certain transparent areas, so that background image is shown in those areas. I want to save it to the file, but there is no save method for picturebox. There is a save method for image property, but then it only saves the content of the image, and does not include the backgroundimage. Any hints on how I can save both, so that it looks in the file exactly as it looks on the picturebox?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

記柔刀 2024-11-26 17:03:22

尝试:

    Bitmap bmp = new Bitmap(pictureBox1.Width, pictureBox1.Height, pictureBox1.CreateGraphics());
    bmp.Save(@"BlaBlaBlaBla.Bla");

编辑:

        Bitmap b = new Bitmap(width, height);
        Graphics g = Graphics.FromImage(b);

然后使用Graphics的drawImage方法绘制背景和前景并保存位图。

Try:

    Bitmap bmp = new Bitmap(pictureBox1.Width, pictureBox1.Height, pictureBox1.CreateGraphics());
    bmp.Save(@"BlaBlaBlaBla.Bla");

edit:

        Bitmap b = new Bitmap(width, height);
        Graphics g = Graphics.FromImage(b);

Then use the drawImage method of Graphics to draw background and foreground and save the bitmap.

你的呼吸 2024-11-26 17:03:22

我已经成功地通过使用图形将两个图像组合在一起,然后将结果保存为单个图像对象来实现此目的。因此,我不再使用背景图像。

I have managed to accomplish this by simply combining two images together using graphics, and then saving the result as a single image object. Thus, I am not using background image anymore.

二智少女 2024-11-26 17:03:22

g.DrawLine(myPen, EX, EY, eX, eY);
EX = eX;
EY = eY;<代码>
DrawArea = (位图)pictureBox1.Image.Clone();
pictureBox1.Image = DrawArea;

        pictureBox1.Image.Save(@"D:\C#Test_Save_File\Arash_Bashiri.bmp",    System.Drawing.Imaging.ImageFormat.Bmp);    `

g.DrawLine(myPen, EX, EY, e.X, e.Y);
EX = e.X;

EY = e.Y;
DrawArea = (Bitmap)pictureBox1.Image.Clone();
pictureBox1.Image = DrawArea;

        pictureBox1.Image.Save(@"D:\C#Test_Save_File\Arash_Bashiri.bmp",    System.Drawing.Imaging.ImageFormat.Bmp);    `
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文