drawGetClipPath method

String? drawGetClipPath()

DrawGetClipPath() obtains the current clipping path ID. The value returned must be deallocated by the user when it is no longer needed.

Implementation

String? drawGetClipPath() {
  final Pointer<Char> resultPtr =
      _magickWandBindings.DrawGetClipPath(_wandPtr);
  final String? result = resultPtr.toNullableString();
  _magickRelinquishMemory(resultPtr.cast());
  return result;
}