From 6e16365ee3aea1306f2a5b5b933d727aa1c127d2 Mon Sep 17 00:00:00 2001 From: Kevin Gallahan Date: Fri, 20 Oct 2023 12:30:08 -0400 Subject: [PATCH] Add BGRA PixelMapping.cs This adds BGRA to the PixelMapping enum for convenience --- src/Magick.NET.Core/Enums/PixelMapping.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Magick.NET.Core/Enums/PixelMapping.cs b/src/Magick.NET.Core/Enums/PixelMapping.cs index 18566f0307..f3db61aba3 100644 --- a/src/Magick.NET.Core/Enums/PixelMapping.cs +++ b/src/Magick.NET.Core/Enums/PixelMapping.cs @@ -32,4 +32,9 @@ public enum PixelMapping /// CMYK. /// CMYK, + + /// + /// BGRA. + /// + BGRA, }