News & Releases

Minimize
Nasosoft Component for .NET v2.8 Released - Wednesday, July 28, 2010

Nasosoft Component for .NET v2.8 has released with many improvements.

Nasosoft Component for .NET is a suite of comprehensive .NET controls, including EXCEL, PDF, and RTF document format engines, RTF to HTML, HTML to RTF, RTF to TEXT, HTML to TEXT document transform engines, Chart control, SMTP, POP3, IMAP, FTP, WebDAV internet SDK and ZIP, GZIP, TAR compression.

What's new

  • Nasosoft Excel 
    • Support reading Excel 95 file format  
    • Improved error recovery for loading unreadable excel files
  • Nasosoft Transform
    • Support Text to PDF convertion 
  • Nasosoft PDF
    • Support MeasueString
  • Many Bug fixes from v2.7

How to Download

 

Enter Title

   Minimize

Merge PDF documents:

 
PdfDocumentEditor editor = new PdfDocumentEditor("file1.pdf");
 
// Attach all content of file2.pdf to the end of file1.pdf
editor.Merge("file2.pdf");
editor.Save("result.pdf");
editor.Close();
 
Operation of PdfDocumentEditor is accumulative
using (PdfDocumentEditor pdfEditor = new PdfDocumentEditor(GetFile("file1.pdf")))
{
    // Insert page 0 and 1 from file2.pdf before 2nd page of file1.pdf
    pdfEditor.Insert(1, "file2.pdf", new int[] { 0, 1 });
    // Insert page 2 and 3 from file2.pdf before 5th page of the new pdf file represent by pdfEditor object
    pdfEditor.Insert(5, "file2.pdf", new int[] { 2, 3 });
    // Append whole file of file3.pdf at the end of the new pdf file object represent by pdfEditor object
    pdfEditor.Merge("file3.pdf");
    // Append page 0 to 4 from file4.pdf to the new pdf file object represent by pdfEditor object
    pdfEditor.Append("file4.pdf", 0, 4);
 
    pdfEditor.Save("Insert_Merge_Append.pdf");
    pdfEditor.Close();
}