我正在尝试使用fo-dicom。
我正在关注their example on converting a .dcm image to .jpg。
var image = new DicomImage(@"test.dcm");
image.RenderImage().Save(@"test.jpg");
我在调用Save()
的行中收到以下错误:
The type 'System.Drawing.Image' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
我该怎么做?
答案 0 :(得分:10)
在Visual Studio中,右键单击您的项目 - >添加 - >参考。在Framework选项卡上,选择System.Drawing。
找出一个类所在的程序集的简单方法是查看MSDN文档。例如,请查看http://msdn.microsoft.com/en-us/library/system.drawing.image.aspx。
答案 1 :(得分:0)
有些时候我对装配这样的东西有点误。我通常尝试使用Clean Solution然后重建我的项目,它的工作正常。
答案 2 :(得分:0)