我已将ImageSharp引用迁移到版本1.0.0-dev000692。现在我不能再加载图片了。我得到了你可以在下面看到的例外情况。
拨打:
byte[] data = GetImage();
var image = Image.Load(data);
该函数在ASP.Net Core(2.0)应用程序中调用
异常:
Method not found: '!0 System.ReadOnlySpan`1.get_Item(Int32)'.
at SixLabors.ImageSharp.Formats.Bmp.BmpImageFormatDetector.IsSupportedFileFormat(ReadOnlySpan`1 header)
at SixLabors.ImageSharp.Formats.Bmp.BmpImageFormatDetector.DetectFormat(ReadOnlySpan`1 header)
at SixLabors.ImageSharp.Image.<>c__DisplayClass0_0.<InternalDetectFormat>b__0(IImageFormatDetector x)
at System.Linq.Enumerable.SelectEnumerableIterator`2.MoveNext()
at System.Linq.Enumerable.TryGetLast[TSource](IEnumerable`1 source, Func`2 predicate, Boolean& found)
at SixLabors.ImageSharp.Image.InternalDetectFormat(Stream stream, Configuration config)
at SixLabors.ImageSharp.Image.Decode[TPixel](Stream stream, Configuration config)
at SixLabors.ImageSharp.Image.WithSeekableStream[T](Stream stream, Func`2 action)
at SixLabors.ImageSharp.Image.Load[TPixel](Configuration config, Stream stream, IImageFormat& format)
at SixLabors.ImageSharp.Image.Load[TPixel](Configuration config, Byte[] data)
at work4all.Server.Api.Core.Controllers.FileController.ResizeBenutzerBild(Byte[] data, Int32 maxHeight, Int32 maxWidth, String filename) in D:\DEV\VSTS-work4all\work4all Server\work4all.Server.Api.Core\work4all.Server.Api.Core\Controllers\FileController.cs:line 211
答案 0 :(得分:0)
这不是ImageSharp的问题,而是当前CoreClr预览的一个问题。
https://github.com/dotnet/coreclr/pull/14727
您必须使用.Net Core 2.1的预览版,现在将恢复为2.0版。
<强>更新即可。
从beta4开始,该解决方案将在.NET Core 2.1上运行
答案 1 :(得分:0)
我也遇到了这个问题。您是否尝试过更新到SixLabors.ImageSharp.Drawing beta 4?它可能需要对图像处理逻辑进行一些重构工作,但即使我也在Core 2上运行,它也可以解决我的问题。