我发现了这个例子
using ImageMagick;
using (MagickImage image = new MagickImage("input.svg"))
{
image.Scale(new Percentage(60));
image.Write("output.png");
}
和添加imageMagick通过
dotnet add package Magick.NET.Core --version 8.3.3
我不能让它编译,得到错误:
error CS0246: The type or namespace name 'MagickImage' could not be found (are you missing a using directive or an assembly reference?
如何解决这个问题?我缺少什么导入/使用?
对于。net Core 3.1应用程序,使用Visual Studio 2019,我使用了特定的构建Magick.NET-Q16-AnyCPU
v8.3.3 NuGet包,而不是更通用的Magick.NET.Core
。使用Q16我可以构建没有错误。我不确定NuGet是否与运行dotnet add package ...
相同。