Interface IQualityLevelsConfig
A structure defining the image quality levels of the Quality meter.
Package: @aurigma/design-editor-iframe
Remarks
IQualityMeterConfig uses this interface. For details, see the Warnings topic.
Examples
{
"violationWarningsSettings": {
"qualityMeter": {
"enabled": true,
"qualityLevels": {
"warning": "99",
"bad": "50"
}
}
}
}
Properties
bad
Defines the unacceptable image quality level, comparing to the hi-res output DPI, in percent. This value should be less than or equal to the warning value. The default is 50.
Declaration
bad: number;
Property Value
| Type | Description |
|---|---|
| number | Defines the unacceptable image quality level, comparing to the hi-res output DPI, in percent. This value should be less than or equal to the |
warning
Defines the warning image quality level, comparing to the hi-res output DPI, in percent. This value should be greater than or equal to the bad value. The default is 100.
Declaration
warning: number;
Property Value
| Type | Description |
|---|---|
| number | Defines the warning image quality level, comparing to the hi-res output DPI, in percent. This value should be greater than or equal to the |