I would like to use some functions of PDFsharp and others of MigraDoc, but edit everything in the same article, for example:
graphics.DrawImage(PdfSharp.Drawing.XImage.FromFile("//foto.png"), 51, 52, 123, 57);
sec.AddParagraph("frase");
I would like to use the PDFsharp's photo positioning function and MigraDoc's auto-organizing function (it organizes the page itself, already creating a new one when needed)
I define a document like this , MigraDoc:
MigraDoc.DocumentObjectModel.Document doc = new MigraDoc.DocumentObjectModel.Document();
PdfSharp:
var document = new PdfSharp.Pdf.PdfDocument();