コード例 #1
0
ファイル: pixel_wand.go プロジェクト: qwo/abelana-gcp
// Returns the color of the pixel wand as a string
func (pw *PixelWand) GetColorAsString() string {
	return C.GoString(C.PixelGetColorAsString(pw.pw))
}
コード例 #2
0
ファイル: pixel_wand.go プロジェクト: palaiyacw/imagick
// 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)
}