quality property

int? get quality

When format is "jpeg", controls the quality of the resulting image. This value is ignored for PNG images. As quality is decreased, the resulting image will have more visual artifacts, and the number of bytes needed to store it will decrease.

Implementation

int? get quality => _wrapped.quality;
set quality (int? v)

Implementation

set quality(int? v) {
  _wrapped.quality = v;
}