Exemplo n.º 1
0
// Returns the ImageMagick API copyright as a string constant.
func GetCopyright() string {
	cstr := C.MagickGetCopyright()
	return C.GoString(cstr)
}
Exemplo n.º 2
0
// Returns the ImageMagick API copyright as a string constant.
func GetCopyright() string {
	cstr := C.MagickGetCopyright()
	defer C.free(unsafe.Pointer(cstr))
	return C.GoString(cstr)
}