News Category

Spire.PDF 8.11.10 supports .NET 7.0 and converting PDF to PPTX

2022-11-30 07:06:24

We are excited to announce the release of Spire.PDF 8.11.10. This version supports .NET 7.0 and converting PDF to PPTX. At the same time, it adds a new method of compressing PDF document. What’s more, some known issues are successfully fixed in this version, such as the issue that the background color lost after drawing TIFF images on page. More details are listed below.

Here is a list of changes made in this release

Category ID Description
New feature - Supports .NET 7.0.
Supports converting PDF to PPTX.
PdfDocument pdf = new PdfDocument();
pdf.LoadFromFile(inputFile);
pdf.SaveToFile(outputFile, FileFormat.PPTX)
New feature SPIREPDF-2534
SPIREPDF-4641
Adds a new method of compressing PDF document.
PdfCompressor compressor = new PdfCompressor(fileName);
compressor.CompressToFIle(outputName);
New feature SPIREPDF-5598 PdfTextReplacer interface supports ignoring case.
PdfDocument doc = new PdfDocument();
doc.LoadFromFile(input);
PdfPageBase page = doc.Pages[0];
PdfTextReplacer replacer = new PdfTextReplacer(page);
PdfTextReplaceOptions option = new PdfTextReplaceOptions();
options.ReplaceType = ReplaceActionType.IgnoreCase;
replacer.Options = option;
replacer.ReplaceText("cash", "999"); 
doc.SaveToFile("output.pdf", FileFormat.PDF);
Bug SPIREPDF-1264
SPIREPDF-5608
Fixes the issue that the content was incorrect when converting PDF to images.
Bug SPIREPDF-5443 Fixes the issue that the program threw System.ArgumentException when converting PDF to Excel.
Bug SPIREPDF-5527 Fixes the issue that it failed to find cross-line text.
Bug SPIREPDF-5556 Fixes the issue that it failed to get attachments.
Bug SPIREPDF-5591 Fixes the issue that the background color lost after drawing TIFF images on page.
Bug SPIREPDF-5596 Fixes the issue that the text color was changed after drawing TIFF images on page.
Click the link to download Spire.PDF 8.11.10:
More information of Spire.PDF new release or hotfix: