/// <summary> /// Adds a PdfScriptObject to the page that draws a oval given 2 coordinates. /// </summary> public static PdfObjectRef DrawOval2(this PdfPageWriter page, double x1, double y1, double x2, double y2, PdfGraphicsOptions options) { var obj = new PdfScriptObject(); obj.BeginGraphicsState(); options.Apply(obj); obj.DrawOval2(x1, y1, x2, y2); obj.EndPath(true, true, true); obj.EndGraphicsState(); return(page.WriteObject(obj)); }