magickGetImageBorderColor method

bool magickGetImageBorderColor(
  1. PixelWand borderColor
)

Returns the image border color.

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

  • borderColor: the border color.

Implementation

bool magickGetImageBorderColor(PixelWand borderColor) =>
    _magickWandBindings.MagickGetImageBorderColor(
      _wandPtr,
      borderColor._wandPtr,
    ).toBool();