Ici, nous créons un objet de document Migradoc pour dessiner le contenu de cette page

static void SamplePage1(PdfDocument document)
{
  PdfPage page = document.AddPage();
  XGraphics gfx = XGraphics.FromPdfPage(page);
  // HACK²
  gfx.MUH = PdfFontEncoding.Unicode;
  gfx.MFEH = PdfFontEmbedding.Default;
 
  XFont font = new XFont("Verdana", 13, XFontStyle.Bold);
 
  gfx.DrawString("The following paragraph was rendered using MigraDoc:", font, XBrushes.Black,
    new XRect(100, 100, page.Width - 200, 300), XStringFormats.Center);
 
  // You always need a MigraDoc document for rendering.
  Document doc = new Document();
  Section sec = doc.AddSection();
  // Add a single paragraph with some text and format information.
  Paragraph para = sec.AddParagraph();
  para.Format.Alignment = ParagraphAlignment.Justify;
  para.Format.Font.Name = "Times New Roman";
  para.Format.Font.Size = 12;
  para.Format.Font.Color = MigraDoc.DocumentObjectModel.Colors.DarkGray;
  para.Format.Font.Color = MigraDoc.DocumentObjectModel.Colors.DarkGray;
  para.AddText("Duisism odigna acipsum delesenisl ");
  para.AddFormattedText("ullum in velenit", TextFormat.Bold);
  para.AddText(" ipit iurero dolum zzriliquisis nit wis dolore vel et nonsequipit, velendigna "+
    "auguercilit lor se dipisl duismod tatem zzrit at laore magna feummod oloborting ea con vel "+
    "essit augiati onsequat luptat nos diatum vel ullum illummy nonsent nit ipis et nonsequis "+
    "niation utpat. Odolobor augait et non etueril landre min ut ulla feugiam commodo lortie ex "+
    "essent augait el ing eumsan hendre feugait prat augiatem amconul laoreet. ≤≥≈≠");
  para.Format.Borders.Distance = "5pt";
  para.Format.Borders.Color = Colors.Gold;
 
  // Create a renderer and prepare (=layout) the document
  MigraDoc.Rendering.DocumentRenderer docRenderer = new DocumentRenderer(doc);
  docRenderer.PrepareDocument();
 
  // Render the paragraph. You can render tables or shapes the same way.
  docRenderer.RenderObject(gfx, XUnit.FromCentimeter(5), XUnit.FromCentimeter(10), "12cm", para);
}
Happy Hyena