Interface IQualityMeterConfig
A structure containing the configuration of the image quality meter.
Package: @aurigma/design-editor-iframe
Remarks
IViolationWarningsSettingsConfig uses this interface. For details, see the Warnings topic.
Examples
{
"violationWarningsSettings": {
"qualityMeter": {
"enabled": true,
"qualityLevels": {
"warning": "99",
"bad": "50"
}
}
}
}
Properties
enabled
If true, enables the quality meter and low DPI warnings. The default value is true.
Declaration
enabled?: boolean;
Property Value
| Type | Description |
|---|---|
| boolean | If |
qualityLevels
Defines the image quality levels, in percent of the hi-res output DPI specified in the IRenderingProperty.hiResOutputDpi property.
Declaration
qualityLevels?: IQualityLevelsConfig;
Property Value
| Type | Description |
|---|---|
| IQualityLevelsConfig | Defines the image quality levels, in percent of the hi-res output DPI specified in the IRenderingProperty.hiResOutputDpi property. |