DynamicPDF Core Suite for .NET v8.0.4 Build 33803
DynamicPDF Core Suite for .NET v8.0.4 Build 33803 | 142 Mb
DynamicPDF Core Suite bundles together our DynamicPDF Generator, Merger and ReportWriter products and makes them available at a reduced price. This is ideal for anyone who finds themselves needing multiple DynamicPDF products or who needs to combine the functionality of multiple products in their applications. With a Free Evaluation Edition to try and with flexible and Royalty Free licensing options, why not start using DynamicPDF Merger Today!
Performance
DynamicPDF Generator for .NET was designed with perfomance in mind. PDF documents are generated by default using a single pass architecture allowing the PDF output to be sent to the output stream as the document is being created. This minimizes the amount of data stored in RAM as the document is created and frees up resources as quickly as possible during the output process. The architecture is similar to the way ASP.NET renders controls and has proven to be highly efficient. Take a look at the examples page for some performance statistics.
Performance was a major consideration during the development of DynamicPDF Merger for .NET. The techniques used to parse and manage the imported data are extremely fast and well designed. Only the data required in the output document is parsed and commonly used documents or pages can be stored as static variable to eliminate repeated parsing of the same data. This results in extremely fast performance. Take a look at the examples page for some performance statistics.
DynamicPDF ReportWriter for .NET builds PDF reports using the highly reliable and efficient DynamicPDF Generator for .NET. Report Elements are output to PDF using its object model and DPLX files can be cached and shared in a multi-threaded environment. DynamicPDF ReportWriter for .NET has been designed to excel in high load environments where high performance and reliability are key. Take a look at the examples page for some performance statistics.
C# Code:
1: Document document = new Document();
2:
3: Page page = new Page(PageSize.Letter, PageOrientation.Portrait);
4: document.Pages.Add(page);
5:
6: page.Elements.Add(new Label("My PDF Document", 0, 0, 512, 40, Font.Helvetica));
7: document.Draw(@"C:\MyDocument.pdf");
VB.NET Code:
1: Dim MyDocument As Document = New Document
2:
3: Dim MyPage As Page = New Page(PageSize.Letter, PageOrientation.Portrait)
4: MyDocument.Pages.Add(MyPage)
5:
6: MyPage.Elements.Add(New Label("My PDF Document", 0, 0, 512, 40, Font.Helvetica))
7: MyDocument.Draw("C:\MyDocument.pdf")
Only for V.I.P
Warning! You are not allowed to view this text.