magickSolarizeImage method

Future<bool> magickSolarizeImage(
  1. double threshold
)

MagickSolarizeImage() applies a special effect to the image, similar to the effect achieved in a photo darkroom by selectively exposing areas of photo sensitive paper to light. Threshold ranges from 0 to QuantumRange and is a measure of the extent of the solarization.

This method runs inside an isolate different from the main isolate.

  • threshold: Define the extent of the solarization.

Implementation

Future<bool> magickSolarizeImage(double threshold) async =>
    await _magickCompute(
      _magickSolarizeImage,
      _MagickSolarizeImageParams(
        _wandPtr.address,
        threshold,
      ),
    );