// // Copyright (c) James Jackson-South and contributors. // Licensed under the Apache License, Version 2.0. // namespace ImageSharp.Formats { /// /// Encapsulates the options for the . /// public interface IBmpEncoderOptions : IEncoderOptions { /// /// Gets the number of bits per pixel. /// BmpBitsPerPixel BitsPerPixel { get; } } }