Quality levels for image filters.

See Paint.filterQuality.

Constants

high FilterQuality

Best possible quality filtering, albeit also the slowest.

Typically this implies bicubic interpolation or better.

const FilterQuality(3)
low FilterQuality

Better quality than none, faster than medium.

Typically this implies bilinear interpolation.

const FilterQuality(1)
medium FilterQuality

Better quality than low, faster than high.

Typically this implies a combination of bilinear interpolation and pyramidal parametric prefiltering (mipmaps).

const FilterQuality(2)
none FilterQuality

Fastest possible filtering, albeit also the lowest quality.

Typically this implies nearest-neighbour filtering.

const FilterQuality(0)
values List<FilterQuality>

A constant List of the values in this enum, in order of their declaration.

const List<FilterQuality>

Properties

index int
read-only
hashCode int

Get a hash code for this object.

read-only, inherited
runtimeType Type

A representation of the runtime type of the object.

read-only, inherited

Operators

operator ==(other) bool

The equality operator.

inherited

Methods

noSuchMethod(Invocation invocation) → dynamic

Invoked when a non-existent method or property is accessed.

inherited
toString() String

Returns a string representation of this object.

inherited