Zastosowanie PDFSharp
PDFsharp jest biblioteka Open Source, który łatwo tworzy dokumenty PDF z dowolnego języka .NET. Te same procedury rysowania mogą być używane do tworzenia dokumentów PDF, rysowania na ekranie lub wysyłania danych wyjściowych do dowolnej drukarki.
// Create a new PDF document
PdfDocument document = new PdfDocument();
// Create an empty page
PdfPage page = document.AddPage();
// Get an XGraphics object for drawing
XGraphics gfx = XGraphics.FromPdfPage(page);
// Create a font
XFont font = new XFont("Verdana", 20, XFontStyle.Bold);
// Draw the text
gfx.DrawString("Hello, World!", font, XBrushes.Black,
new XRect(0, 0, page.Width, page.Height),
XStringFormat.Center);
// Save the document...
string filename = "HelloWorld.pdf";
document.Save(filename);
// ...and start a viewer.
Process.Start(filename);
Samples
Link do PDFSharp jest niepoprawny – edosoft
zaktualizowany ........ – Sorantis
... "dzięki za wskazanie, że chłopaki" ... –