CSharpImageLibrary.ImageFormats.IsAlphaPresent C# (CSharp) Method

IsAlphaPresent() public static method

Determines if alpha channel COULD be present in given format.
public static IsAlphaPresent ( System.Windows.Media.PixelFormat format ) : bool
format System.Windows.Media.PixelFormat Format to check alpha in.
return bool
        public static bool IsAlphaPresent(PixelFormat format)
        {
            return format.ToString().Contains("a", StringComparison.OrdinalIgnoreCase);
        }