SixLabors / ImageSharp

:camera: A modern, cross-platform, 2D Graphics library for .NET
https://sixlabors.com/products/imagesharp/
Other
7.35k stars 850 forks source link

System.Memory API integration #565

Closed antonfirsov closed 6 years ago

antonfirsov commented 6 years ago

Goals

Thanks to #558, we are now able to expose System.Memory API-s allowing efficient interop operations. However, we need to distinguish between different use-cases, because they raise design problems of different difficulty levels. In some use-cases we have to decide whether we should expose Span<T>, Memory<T> or both.

"Official" guideline on System.Memory

Managed to find a WIP (?) documentation on Memory<T>. (It was mentioned in coreclr/#17340)

Tasks

jherby2k commented 6 years ago

I'd really like to see these, as a consumer of this library. I recognize that in most cases you're going to have to just copy the span to an array (at least you can ArrayPool) to use with MemoryStream, but eventually (.NET Standard 3, apparently) streams will be able to read from Spans directly.

public static IImageFormat DetectFormat(ReadOnlySpan<byte> data);

public static IImageFormat DetectFormat(Configuration config, ReadOnlySpan<byte> data);

public static Image<Rgba32> Load(ReadOnlySpan<byte> data);

public static Image<Rgba32> Load(ReadOnlySpan<byte> data, out IImageFormat format);

public static Image<Rgba32> Load(Configuration config, ReadOnlySpan<byte> data);

public static Image<Rgba32> Load(Configuration config, ReadOnlySpan<byte> data, out IImageFormat format);

public static Image<Rgba32> Load(ReadOnlySpan<byte> data, IImageDecoder decoder);

public static Image<Rgba32> Load(Configuration config, ReadOnlySpan<byte> data, IImageDecoder decoder);

public static Image<TPixel> Load<TPixel>(ReadOnlySpan<byte> data);

public static Image<TPixel> Load<TPixel>(ReadOnlySpan<byte> data, out IImageFormat format);

public static Image<TPixel> Load<TPixel>(Configuration config, ReadOnlySpan<byte> data);

public static Image<TPixel> Load<TPixel>(Configuration config, ReadOnlySpan<byte> data, out IImageFormat format);

public static Image<TPixel> Load<TPixel>(ReadOnlySpan<byte> data, IImageDecoder decoder);

public static Image<TPixel> Load<TPixel>(Configuration config, ReadOnlySpan<byte> data, IImageDecoder decoder);
antonfirsov commented 6 years ago

@jherby2k I like your API proposal pretty much, we should implement it. But it's important to make sure we have good docs on these methods, because currently it's very easy to confuse Load() with LoadPixelData() from the beginners POV in my opinion.

Our current docs on Image.Load(byte[] data) aren't really helpful:

Create a new instance of the <see cref="Image{Rgba32}"/> class from the given byte array.
hypeartist commented 6 years ago

@antonfirsov @JimBobSquarePants Additional info on Span and Memory stuff: C# - All About Span: Exploring a New .NET Mainstay

antonfirsov commented 6 years ago

607 has been merged. We are progressing, but there are many issues I failed to notice when making the proposal:

See the updated issue description for more details!

jherby2k commented 6 years ago

Well I alluded to that in my request... at the time it was announced that the spanified Steams would be coming to netstandard 3.0 / .net 4.8 but now it sounds like that isn’t going to be the case. My suggestion is to start targeting netcoreapp2.1 directly, and for netstandard just copy the span to a buffer from the array pool. At least then the API is consistent, even if there is no performance benefit when using the netstandard lib.

antonfirsov commented 6 years ago

@jherby2k unfortunately, "spanified stream" isn't a thing that helps here, but I figured it out! We can pin the span and use UnmanagedMemoryStream.

Gonna PR it soon.

jherby2k commented 6 years ago

Did not know about that one! That’s great.

Just to clarify though, by “spanified stream” I’m referring to .net core 2.1’s Stream.Write(Span buffer) overload. Which is exactly what you’re looking for, but obviously isn’t available for .net standard.

antonfirsov commented 6 years ago

@jherby2k ahh, you mean creating a MemoryStream and writing the span into it? I wanted to avoid this, it's a huge allocation :)

antonfirsov commented 6 years ago

We may need to introduce further API changes to allow handling very large unmanaged buffers and memory mapped files, but the topic is not yet clear for me. I'm leaving a few links here, so we can find them later:

antonfirsov commented 6 years ago

Best System.Memory article so far: https://www.codemag.com/Article/1807051/Introducing-.NET-Core-2.1-Flagship-Types-Span-T-and-Memory-T

antonfirsov commented 6 years ago

All tasks are done, so I'm closing this epic.