drawGetFillColor method

void drawGetFillColor(
  1. PixelWand pixelWand
)

DrawGetFillColor() returns the fill color used for drawing filled objects.

  • pixelWand : Return the fill color.

Implementation

void drawGetFillColor(PixelWand pixelWand) =>
    _magickWandBindings.DrawGetFillColor(
      _wandPtr,
      pixelWand._wandPtr,
    );