mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
2.0 KiB
53 lines
2.0 KiB
// Copyright (c) Six Labors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
|
|
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using SixLabors.ImageSharp.Advanced;
|
|
using SixLabors.ImageSharp.PixelFormats;
|
|
using SixLabors.ImageSharp.Processing.Processors.Quantization;
|
|
|
|
namespace SixLabors.ImageSharp.Formats.Bmp
|
|
{
|
|
/// <summary>
|
|
/// Image encoder for writing an image to a stream as a Windows bitmap.
|
|
/// </summary>
|
|
public sealed class BmpEncoder : IImageEncoder, IBmpEncoderOptions
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the number of bits per pixel.
|
|
/// </summary>
|
|
public BmpBitsPerPixel? BitsPerPixel { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether the encoder should support transparency.
|
|
/// Note: Transparency support only works together with 32 bits per pixel. This option will
|
|
/// change the default behavior of the encoder of writing a bitmap version 3 info header with no compression.
|
|
/// Instead a bitmap version 4 info header will be written with the BITFIELDS compression.
|
|
/// </summary>
|
|
public bool SupportTransparency { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the quantizer for reducing the color count for 8-Bit images.
|
|
/// Defaults to Wu Quantizer.
|
|
/// </summary>
|
|
public IQuantizer Quantizer { get; set; }
|
|
|
|
/// <inheritdoc/>
|
|
public void Encode<TPixel>(Image<TPixel> image, Stream stream)
|
|
where TPixel : unmanaged, IPixel<TPixel>
|
|
{
|
|
var encoder = new BmpEncoderCore(this, image.GetMemoryAllocator());
|
|
encoder.Encode(image, stream);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public Task EncodeAsync<TPixel>(Image<TPixel> image, Stream stream, CancellationToken cancellationToken)
|
|
where TPixel : unmanaged, IPixel<TPixel>
|
|
{
|
|
var encoder = new BmpEncoderCore(this, image.GetMemoryAllocator());
|
|
return encoder.EncodeAsync(image, stream, cancellationToken);
|
|
}
|
|
}
|
|
}
|
|
|