gpt4 book ai didi

vb.net - 从图形创建图像

转载 作者:行者123 更新时间:2023-12-04 23:07:09 27 4
gpt4 key购买 nike

在 VB.NET 中,我需要创建一个 Image基于 Graphics我有对象。但是,没有诸如Image.fromGraphics()之类的方法。等等。那我该怎么办?

最佳答案

尝试这样的事情 MSDN article状态。 Essentialy 创建一个 Graphics来自 Bitmap 的对象.然后使用Graphic方法对Image做你需要做的事情然后你可以使用 Image你需要怎么做。正如@Damien_The_Unbeliever 所说,您的图形对象是为了在另一个对象上绘图而创建的,它没有要复制的图像,它是在其上创建的对象。

从上面的文章:

Dim flag As New Bitmap(200, 100)
Dim flagGraphics As Graphics = Graphics.FromImage(flag)
Dim red As Integer = 0
Dim white As Integer = 11
While white <= 100
flagGraphics.FillRectangle(Brushes.Red, 0, red, 200, 10)
flagGraphics.FillRectangle(Brushes.White, 0, white, 200, 10)
red += 20
white += 20
End While
pictureBox1.Image = flag

关于vb.net - 从图形创建图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9450591/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com