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.
31 lines
904 B
31 lines
904 B
// <copyright file="DeflateStrategy.cs" company="James South">
|
|
// Copyright (c) James South and contributors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
// </copyright>
|
|
|
|
namespace ImageProcessor.Formats
|
|
{
|
|
/// <summary>
|
|
/// Strategies for deflater
|
|
/// </summary>
|
|
public enum DeflateStrategy
|
|
{
|
|
/// <summary>
|
|
/// The default strategy
|
|
/// </summary>
|
|
Default = 0,
|
|
|
|
/// <summary>
|
|
/// This strategy will only allow longer string repetitions. It is
|
|
/// useful for random data with a small character set.
|
|
/// </summary>
|
|
Filtered = 1,
|
|
|
|
/// <summary>
|
|
/// This strategy will not look for string repetitions at all. It
|
|
/// only encodes with Huffman trees (which means, that more common
|
|
/// characters get a smaller encoding.
|
|
/// </summary>
|
|
HuffmanOnly = 2
|
|
}
|
|
}
|
|
|