NewMagickImage method

Pointer<Image> NewMagickImage(
  1. Pointer<ImageInfo> arg0,
  2. int arg1,
  3. int arg2,
  4. Pointer<PixelInfo> arg3,
  5. Pointer<ExceptionInfo> arg4,
)

Implementation

ffi.Pointer<Image> NewMagickImage(
  ffi.Pointer<ImageInfo> arg0,
  int arg1,
  int arg2,
  ffi.Pointer<PixelInfo> arg3,
  ffi.Pointer<ExceptionInfo> arg4,
) {
  return _NewMagickImage(
    arg0,
    arg1,
    arg2,
    arg3,
    arg4,
  );
}