我在这篇文章后面包含了一个图像作为资源:
How to create and use resources in .NET
How to create and use resources in .NET
我正在使用PDFSharp库来创建PDF.绘制图像的方法需要图像的路径.我如何获得Properties.Resources.Image的路径?
或者还有另一种方法吗?
解决方法
Properties.Resources.Image是内存资源.
var path = Path.GetTempPath(); Properties.Resources.logo.Save(path);
以上使用Bitmap.Save