【发布时间】:2016-12-22 05:13:01
【问题描述】:
在我拥有的 C# 应用程序中,我需要将 Imagesource 添加到现有位图图像。
据我所知,我必须使用
Graphics g = Graphics.FromImage(myBitmap);
g.DrawImage();
我知道 g.DrawImage() 我必须将我的 Imagesource 转换为 System.Drawing.Image,我的问题是我该怎么做?
【问题讨论】:
-
这是一个骗子,但如前所述,请查看:blogs.microsoft.co.il/tamir/2007/09/09/…
标签: c# image imagesource