contrast property

double contrast

The contrast of the layer.

Implementation

double get contrast {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ImageAdjustmentLayer_getContrast(
      _handle,
      errorHandler,
    );
  });
}
void contrast=(double value)

Implementation

set contrast(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ImageAdjustmentLayer_setContrast(
      _handle,
      value,
      errorHandler,
    );
  });
}