magickBlueShiftImage method

Future<bool> magickBlueShiftImage([
  1. double factor = 1.5
])

Mutes the colors of the image to simulate a scene at nighttime in the moonlight.

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

  • factor : the blue shift factor (default 1.5).

Implementation

Future<bool> magickBlueShiftImage([double factor = 1.5]) async =>
    await _magickCompute(
      _magickBlueShiftImage,
      _MagickBlueShiftImageParams(_wandPtr.address, factor),
    );