ImageProcessor.Processor.GetBitsPerPixel C# (CSharp) Method

GetBitsPerPixel() private method

private GetBitsPerPixel ( PixelFormat pixelFormat ) : byte
pixelFormat PixelFormat
return byte
        private byte GetBitsPerPixel(PixelFormat pixelFormat)
        {
            switch (pixelFormat)
            {
                case PixelFormat.Format24bppRgb:
                    return 24;
                    break;
                case PixelFormat.Format32bppArgb:
                case PixelFormat.Format32bppPArgb:
                case PixelFormat.Format32bppRgb:
                    return 32;
                    break;
                default:
                    throw new ArgumentException("Only 24 and 32 bit images are supported");

            }
        }