Category Archive: Aspose.PDF Product Family

Official blog of Aspose.PDF for .NET, Java, Android, C++ & Reporting Services with news of newly supported features, hot fixes, technical articles, tips and videos.

Adding glossary in Aspose.Pdf for .Net

Although glossary is not supported directly in Aspose.Pdf for .Net, it is possible to create glossary using the #$REFPAGE symbol. Here is an example:

[c#]

   //create Pdf and set license
   Pdf pdf = new Pdf();
   Aspose.Pdf.License lic = new Aspose.Pdf.License();
   lic.SetLicense(@”D:\CSharp\Test\License\Aspose.Custom.lic.xml”);
   pdf.IsTruetypeFontMapCached = true;
   pdf.TruetypeFontMapPath = @”d:\test”;

   //create new section
   Section sec1 = pdf.Sections.Add();

   //create tables and add data
   Table table1 = new Table();
   table1.ColumnWidths = “200 100”;
   sec1.Paragraphs.Add(table1);
   
   Row row1 = table1.Rows.Add();
   Cell cell1 = row1.Cells.Add();
   Heading heading1 … Continue Reading

Posted in Aspose.PDF Product Family |

Aspose.Pdf.Kit for Java Hotfix 1.7.1.0 Released!

In this hotfix:

Main bugs fixed:
1) A License bug has been fixed.

2) A bug in method Concatenate() of Class PdfFileEditor has been fixed.

3) Displaying in wrong position bug in Stamp.SetOrigin is fixed. Please refer to:
http://www.aspose.com/Community/forums/thread/62762.aspx.

Features added or improved:
1) Added new method PdfFileEditor.makeNUp() which allow user to concatenate multi Pdf files or streams in sidewise or lengthwise. Please refer to:
http://www.aspose.com/Community/forums/thread/62334.aspx.
Continue Reading

Posted in Aspose.PDF Product Family |

This is the new location for the Aspose.Pdf Blog

This is the new URL for Aspose.Pdf Blog.

The old Aspose.Pdf blog for .Net and old Aspose.Pdf for Java can still be accessed. We will soon copy all articles from the old blog to this new blog. In order to make the blog clear, we begin to use “product” and “team” blog and not “personal” blog anymore.Continue Reading

Posted in Aspose.PDF Product Family |

Aspose.Pdf.Kit for Java 1.7.0.0 Released!

In this release:

1) In PdfContentEditor:
    two new methods createText() and createFreeText() are added to support adding text into PDF:
    a new method createMarkup() is added:
    a new method createPopup() is added;
    a new method createLine() is added;
    a new method createFileAttachment() is added.
2) In PdfFileEditor, a new method makeNUp() is supported.
3) In PdfFileInfo, getting meta info of the document is supported.
4) In PdfExtractor, a new method extractAttachment() is supported.
5) In … Continue Reading

Posted in Aspose.PDF Product Family |

Announcing Aspose.Pdf for .NET

March 18, 2003 – Sydney, Australia – It is with great pleasure that we announce Aspose.Pdf for .NET, a class library for working with PDF files from within .NET applications. It is designed to be easy to use, yet powerful enough to handle a wide variety of developer demands.

Aspose creates components for developers who need to work with popular file formats from within their own applications. Instead of learning a file format inside out, our products let developers get on … Continue Reading

Posted in Aspose.PDF Product Family, News Release |