コード例 #1
0
ファイル: magick_wand_prop.go プロジェクト: qwo/abelana-gcp
// Sets the antialias propery of the wand.
func (mw *MagickWand) SetAntialias(antialias bool) error {
	C.MagickSetAntialias(mw.mw, b2i(antialias))
	return mw.GetLastError()
}
コード例 #2
0
ファイル: magick_wand_prop.go プロジェクト: palaiyacw/imagick
// Sets the antialias propery of the wand.
func (mw *MagickWand) SetAntialias(antialias bool) error {
	ok := C.MagickSetAntialias(mw.mw, b2i(antialias))
	return mw.getLastErrorIfFailed(ok)
}