如何导入 MagickImage
How do I import MagickImage
我找到了这个例子
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?
我该如何解决这个问题? import/using 我错过了什么?
对于使用 Visual Studio 2019 的 .NET Core 3.1 应用程序,我使用了特定构建 Magick.NET-Q16-AnyCPU
v8.3.3 NuGet 包,而不是更通用的 Magick.NET.Core
。使用 Q16 我可以毫无错误地构建。我不确定 NuGet 是否与 运行 dotnet add package ...
相同。
我找到了这个例子
using ImageMagick;
using (MagickImage image = new MagickImage("input.svg"))
{
image.Scale(new Percentage(60));
image.Write("output.png");
}
并通过
添加了 imageMagickdotnet 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?
我该如何解决这个问题? import/using 我错过了什么?
对于使用 Visual Studio 2019 的 .NET Core 3.1 应用程序,我使用了特定构建 Magick.NET-Q16-AnyCPU
v8.3.3 NuGet 包,而不是更通用的 Magick.NET.Core
。使用 Q16 我可以毫无错误地构建。我不确定 NuGet 是否与 运行 dotnet add package ...
相同。