magickSetImageBackgroundColor method

bool magickSetImageBackgroundColor(
  1. PixelWand background
)

MagickSetImageBackgroundColor() sets the image background color.

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

  • background: the background pixel wand.

Implementation

bool magickSetImageBackgroundColor(PixelWand background) =>
    _magickWandBindings.MagickSetImageBackgroundColor(
      _wandPtr,
      background._wandPtr,
    ).toBool();