public void DrawImage(SVGImage image, double x, double y, double width, double height) { Save(); Translate(x, y); Scale(width / image.Width, height / image.Height); image.RenderToCairo(Handle); Restore(); }
public void DrawImage(SVGImage image, double x, double y, double width, double height) { Save (); Translate (x, y); Scale (width / image.Width, height / image.Height); image.RenderToCairo (Handle); Restore (); }