Skip to content

GlobyteNet/PdfExtreme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PdfExtreme

C# library that allows you to create, edit and save PDF files.

Usage

Here is a simple example of how to create a PDF file with a single page and a text on it.

var pdf = new PdfDocument();
var page = pdf.Pages.Add();
var graphics = XGraphics.FromPdfPage(page);
var font = new XFont("Verdana", 24);
graphics.DrawString("Hello, World!", font, XBrushes.Black, 100, 50);
pdf.Save("file.pdf");

Contributing

Contributions are welcome. Please submit a pull request.

Acknowledgements

This library was based on PDFsharp: A .NET library for processing PDF

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages