Table of Contents

Interface IAutomaticImageFormatConversionConfiguration

Namespace
CMS.ContentEngine
Assembly
CMS.ContentEngine.dll

Interface that defines the configuration of the 'Automatic image format conversion' feature.

public interface IAutomaticImageFormatConversionConfiguration
Extension Methods

Remarks

This API supports the framework infrastructure and is not intended to be used directly from your code.

Properties

HeightLimit

Maximum Image Height: If an image exceeds this specified limit, it will be resized to fit within the maximum height while preserving its aspect ratio, utilizing the 'Automatic Image Format Conversion' feature.

int? HeightLimit { get; set; }

Property Value

int?

InputImageExtensions

File extensions that are processed by the 'Automatic image format conversion' pipeline.

IEnumerable<string> InputImageExtensions { get; }

Property Value

IEnumerable<string>

IsFormatConversionEnabled

Indicates whether the 'Automatic image format conversion' feature is enabled.

bool IsFormatConversionEnabled { get; }

Property Value

bool

OutputImageExtension

Image extension that is produced by the 'Automatic image format conversion' pipeline.

string OutputImageExtension { get; }

Property Value

string

OutputQuality

Quality of the image that is produced by the 'Automatic image format conversion' pipeline.

string OutputQuality { get; }

Property Value

string

WidthLimit

Maximum Image Width: If an image exceeds this specified limit, it will be resized to fit within the maximum width while preserving its aspect ratio, utilizing the 'Automatic Image Format Conversion' feature.

int? WidthLimit { get; set; }

Property Value

int?