From 94a3eb81bf82124ff8f59ae3572393d50d94a096 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Wed, 9 Feb 2022 14:12:31 +1100 Subject: [PATCH] Update pixelbuffers.md --- articles/imagesharp/pixelbuffers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/articles/imagesharp/pixelbuffers.md b/articles/imagesharp/pixelbuffers.md index b238431f..9437da62 100644 --- a/articles/imagesharp/pixelbuffers.md +++ b/articles/imagesharp/pixelbuffers.md @@ -152,8 +152,8 @@ using (var image = Image.LoadPixelData(rgbaBytes, width, height)) } ``` -### OK nice, but how do I get a single pointer or span to the underlying pixel buffer? +### OK nice, but how do you get a single pointer or span to the underlying pixel buffer? -That's the neat part, you don't. 🙂 Well ... normally. +That's the neat part, you don't. 🙂 Well, normally. For custom image processing code written in C#, we highly recommend to use the methods introduced above, since ImageSharp buffers are discontiguous by default. However, certain interop use-cases may require to overcome this limitation, and we support that. Please read the [Memory Management](memorymanagement.md) section for more information. \ No newline at end of file