News & Releases

Minimize
Nasosoft Component for .NET v3.8.0 Released - Wednesday, January 19, 2011

Nasosoft Component for .NET v3.8.0 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 and ZIP, GZIP, TAR compression.

What's new

  • Nasosoft Transform
    • Support iFilter COM+ interfaces 
    • Convert different documents to Text with iFilter

 How to Download

 

Enter Title

   Minimize
Split a PDF Documents
 
PdfDocumentEditor editor = new PdfDocumentEditor("file1.pdf");
 
MemoryStream[] ms = null;
editor.SplitToPages(out ms);
if (ms != null)
{
    for (int index = 0; index « ms.Length; ++index)
    {
        // Do whatever you like against the MemoryStream that represent single page pdf file
        // Such as save it
        using (FileStream fs = new FileStream(String.Format("Page_{0}.pdf", index), FileMode.Create))
        {
            ms[index].WriteTo(fs);
        }
    }
}
 
editor.Close();