func (self *Canvas) SetFontSize(size float64) { C.MagickSetPointsize(self.wand, C.double(size)) }
// Sets the font pointsize associated with the MagickWand. func (mw *MagickWand) SetPointsize(pointSize float64) error { C.MagickSetPointsize(mw.mw, C.double(pointSize)) return mw.GetLastError() }
// Sets the font pointsize associated with the MagickWand. func (mw *MagickWand) SetPointsize(pointSize float64) error { ok := C.MagickSetPointsize(mw.mw, C.double(pointSize)) return mw.getLastErrorIfFailed(ok) }