drawPushClipPath method

void drawPushClipPath(
  1. String clipMaskId
)

DrawPushClipPath() starts a clip path definition which is comprized of any number of drawing commands and terminated by a DrawPopClipPath() command.

Implementation

void drawPushClipPath(String clipMaskId) => using(
      (Arena arena) => _magickWandBindings.DrawPushClipPath(
        _wandPtr,
        clipMaskId.toNativeUtf8(allocator: arena).cast(),
      ),
    );