Merge pull request #50 from sergey-v9/minor-typo-fix-in-var-type

minor typo fix in var type
This commit is contained in:
James Jackson-South 2022-06-09 17:44:53 +10:00 коммит произвёл GitHub
Родитель 2b2b964b95 b41414b779
Коммит 7973b73f3a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -120,7 +120,7 @@ A short summary of the limitations:
### Exporting raw pixel data from an `Image<T>`
You can use @"SixLabors.ImageSharp.Image`1.CopyPixelDataTo*" to copy the pixel data to a user buffer. Note that the following sample code leads to to significant extra GC allocation in case of large images, which can be avoided by processing the image row-by row instead.
```C#
Rgb32[] pixelArray = new Rgba32[image.Width * image.Height]
Rgba32[] pixelArray = new Rgba32[image.Width * image.Height]
image.CopyPixelDataTo(pixelArray);
```