var pdf = CGPDFDocument.FromFile (Path.Combine (NSBundle.MainBundle.BundlePath, "input.pdf"));
var data = new NSMutableData ();
var rect = new CGRect (0, 0, 400, 400);
UIGraphics.BeginPDFContext (data, rect, null);
UIGraphics.BeginPDFPage ();
var g = UIGraphics.GetCurrentContext ();
g.ScaleCTM (1, -1);
g.TranslateCTM (0, -400);
var p = pdf.GetPage (1);
var txf = p.GetDrawingTransform (CGPDFBox.Crop, rect, 0, true);
g.ConcatCTM (txf);
g.DrawPDFPage (p);
g.SetLineWidth (2);
UIColor.Red.SetFill ();
UIColor.Blue.SetStroke ();
var path = new CGPath ();
path.AddLines (new [] {
new CGPoint (100, 200),
new CGPoint (160, 100),
new CGPoint (220, 200)
});
path.CloseSubpath ();
g.AddPath (path);
g.DrawPath (CGPathDrawingMode.FillStroke);
UIGraphics.EndPDFContent ();
var mail = new MFMailComposeViewController ();
mail.AddAttachmentData (data, "text/x-pdf", "output.pdf");
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment