// Returns the font associated with the MagickWand. func (mw *MagickWand) GetFont() string { cstr := C.MagickGetFont(mw.mw) defer C.free(unsafe.Pointer(cstr)) return C.GoString(cstr) }
// Returns the font associated with the MagickWand. func (mw *MagickWand) GetFont() string { cstr := C.MagickGetFont(mw.mw) defer relinquishMemory(unsafe.Pointer(cstr)) return C.GoString(cstr) }