//
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
//
namespace ImageSharp.Formats
{
///
/// Enumerates the available bits per pixel for bitmap.
///
public enum BmpBitsPerPixel
{
///
/// 24 bits per pixel. Each pixel consists of 3 bytes.
///
Pixel24 = 3,
///
/// 32 bits per pixel. Each pixel consists of 4 bytes.
///
Pixel32 = 4,
}
}