// Returns the color of the pixel wand as a string func (pw *PixelWand) GetColorAsString() string { return C.GoString(C.PixelGetColorAsString(pw.pw)) }
// Returns the color of the pixel wand as a string func (pw *PixelWand) GetColorAsString() string { p := C.PixelGetColorAsString(pw.pw) defer relinquishMemory(unsafe.Pointer(p)) return C.GoString(p) }