Cross-platform PDF development tool supports iOS, Android, and Windows Phone.
XFINIUM.PDF Mobile comes in 2 editions: Generator Edition which includes the PDF creation and editing features and Viewer Edition which includes all features in Generator Edition plus the PDF rendering and PDF viewing features.
XFINIUM.PDF library features a wide range of capabilities, both for the beginner and the advanced PDF developer.
Whether you need to create a simple report, fill a PDF form, build a PDF portfolio, redact sensitive information from PDF file or convert a PDF file to a multipage TIFF image.
The simple object model follows the PDF specification so you can have complete control over the generated PDF files. Code written for XFINIUM.PDF can be compiled on all supported platforms without changes.XFINIUM.PDF library is here to help.
XFINIUM.PDF has been developed entirely in C# and it is 100% managed code. It is licensed per developer with royalty free distribution so you can freely distribute your application without paying other fees.
Here is Sample code of "HelloWorld" below:
using Xfinium.Pdf; using Xfinium.Pdf.Graphics; // Create a fixed document PdfFixedDocument document = new PdfFixedDocument(); // Add a new page PdfPage page = document.Pages.Add(); // Create a font and a brush PdfStandardFont helvetica = new PdfStandardFont (PdfStandardFontFace.Helvetica, 24); PdfBrush brush = new Pdf Brush(); // Draw the text on the page page.Graphics0.DrawString("Hello World", helvetica, brush, 100, 100); // Save the document document.Save("helloworld.pdf");
Viewer Edition which includes all features in Generator Edition plus the PDF rendering and PDF viewing features.