public static void PointsToPixels(Graphics oGraphics, float fWidthPt, float fHeightPt, out float fWidthPx, out float fHeightPx) { GraphicsUtil.ConvertPixelsAndPoints(false, oGraphics, fWidthPt, fHeightPt, out fWidthPx, out fHeightPx); }
public static void PixelsToPoints(Graphics oGraphics, float fWidthPx, float fHeightPx, out float fWidthPt, out float fHeightPt) { GraphicsUtil.ConvertPixelsAndPoints(true, oGraphics, fWidthPx, fHeightPx, out fWidthPt, out fHeightPt); }