magickRotationalBlurImage method
MagickRotationalBlurImage() rotational blurs an image.
This method runs inside an isolate different from the main isolate.
angle
: the angle of the blurring effect in degrees.
Implementation
Future<bool> magickRotationalBlurImage(double angle) async =>
await _magickCompute(
_magickRotationalBlurImage,
_MagickRotationalBlurImageParams(
_wandPtr.address,
angle,
),
);