Enum ImageCompressionLevel
Represents the compression level for image formats that support it.
Namespace: FulcrumFS.Images
Assembly: FulcrumFS.Images.dll
Syntax
public enum ImageCompressionLevel
Fields
| Name | Description |
|---|---|
| High | High compression level, recommended for most use-cases, including long-term storage of images where size is an important factor but encoding time should not be expended to compress images beyond the point of diminishing returns. |
| Highest | Highest compression level, should only be used for long-term storage of images when file size is a critical factor and processing time is not a concern. |
| Low | Low compression level, only recommended when fast encoding is a priority and images are not expected to be stored for long periods of time. |
| Lowest | Lowest compression level, should only be used for temporary images when encoding speed is the highest priority and file size is not a concern. |
| Medium | Medium compression level, recommended when a small increase in image size is acceptable to achieve faster encoding times. |