magickSetImageMatteColor method

bool magickSetImageMatteColor(
  1. PixelWand matte
)

MagickSetImageMatteColor() sets the image alpha color.

  • matte: the alpha pixel wand.

Implementation

bool magickSetImageMatteColor(PixelWand matte) =>
    _magickWandBindings.MagickSetImageMatteColor(
      _wandPtr,
      matte._wandPtr,
    ).toBool();