News & Releases
|
|

Spire.PDF 6.5.9 supports creating PDF Portfolios
We're pleased to announce the release of Spire.PDF 6.5.9. This version supports creating PDF Portfolios and it also fixes some issues that occurred when displaying, printing as well as verifying PDF document. More details are listed below.
Here is a list of changes made in this release
| Category | ID | Description |
| New Feature | SPIREPDF-548 SPIREPDF-1023 |
Supports creating PDF Portfolios.
String[] files = new String[] { "File1.pdf", "File2.pdf" };
using (PdfDocument doc = new PdfDocument())
{
for (int i = 0; i < files.Length; i++)
{
doc.Collection.AddFile(files[i]);
}
doc.SaveToFile("output.pdf", FileFormat.PDF);
doc.Dispose();
}
//Create sub folder and add file into itstring[] files = Directory.GetFiles(@"input/");
string inputFile_1 = "input.pdf";
using (PdfDocument doc = new PdfDocument(inputFile_1))
{
for (int i = 0; i < files.Length; i++)
{
doc.Collection.Folders.AddFile(files[i]);
PdfFolder folder = doc.Collection.Folders.CreateSubfolder("SubFolder" + i);
folder.AddFile(files[i]);
}
doc.SaveToFile("output.pdf", FileFormat.PDF);
doc.Dispose();
}
|
| Bug | SPIREPDF-2841 | Fixes the issue that the PDF document converted from Excel document was displayed incorrectly in Adobe. |
| Bug | SPIREPDF-3020 | Fixes the issue that the application threw the exception "Index was outside the bounds of the array" when printing PDF document. |
| Bug | SPIREPDF-3205 | Fixes the issue that textbox field was displayed incorrectly in Adobe after setting it to "ReadOnly". |
| Bug | SPIREPDF-3232 | Fixes the issue that the application threw "NullReferenceException" when extracting the text of the PDF document. |
| Bug | SPIREPDF-3236 | Fixes the issue that the application threw the exception "Value cannot be null" when accessing the used fonts. |
| Bug | SPIREPDF-3245 | Fixes the issue that the application threw the exception "Signature 'FPZYZ' failed to verified" when verifying if the document was modified |
Click the link to download Spire.PDF 6.5.9:
More information of Spire.PDF new release or hotfix: