// Gets the image X and Y resolution. func (dw *DrawingWand) GetFontResolution() (x, y float64, err error) { C.DrawGetFontResolution(dw.dw, (*C.double)(&x), (*C.double)(&y)) err = dw.GetLastError() return }
// Gets the image X and Y resolution. func (dw *DrawingWand) GetFontResolution() (x, y float64, err error) { ok := C.DrawGetFontResolution(dw.dw, (*C.double)(&x), (*C.double)(&y)) err = dw.getLastErrorIfFailed(ok) return }