Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

GroupDocs.Viewer for .NET 24.5 Cross-Platform (DLLs only)

Download   Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 99.84MB
  • Date Added:
  • 31/5/2024

Description

This ZIP package contains cross-platform version of GroupDocs.Viewer for .NET 24.5. This package can be used on Windows, Linux, and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

File Details

This package includes the cross-platform DLLs for GroupDocs.Viewer for .NET 24.5, enabling developers to build C# document viewing applications that work seamlessly on various platforms.

Adobe Illustrator EPS Files Support

Enjoy broader file format support using the .NET document viewer with the addition of the EPS files. The latest release supports rendering encapsulated PostScript (EPS) files in your C# document rendering solutions running on Windows, Linux, or macOS.

Presentations to Pure HTML Rendering

Generate presentations as pure HTML/CSS for increased flexibility in post-processing with version 24.5 of the GroupDocs.Viewer for .NET API. The following code example shows how to use embedded and external options to render presentations as pure HTML and CSS markup in C#.


using GroupDocs.Viewer;
using GroupDocs.Viewer.Options;
// ...
string inputPresentationPath = "SamplePresentation.pptx";

//preparing HTML options for embedded and external resources
HtmlViewOptions embeddedOptions = HtmlViewOptions.ForEmbeddedResources("slide_{0}_embedded.html");
HtmlViewOptions externalOptions = HtmlViewOptions.ForExternalResources("slide_{0}.html", "slide_{0}_{1}", "slide_{0}_{1}");
//enabling the pure HTML/CSS mode for both options
embeddedOptions.PresentationOptions.RenderToPureHtml = externalOptions.PresentationOptions.RenderToPureHtml = true;

using (Viewer viewer = new Viewer(inputPresentationPath))
{
    viewer.View(embeddedOptions);
    viewer.View(externalOptions);
}

Source*

Accurate PDF Document Repairing

Repair PDF documents effortlessly with this .NET API release within your cross-platform applications. Revive the PDFs with structural issues and experience optimized rendering success. This code sample showcases how to repair PDF documents in C#:


using GroupDocs.Viewer;
using GroupDocs.Viewer.Options;
// ...

LoadOptions loadOptions = new LoadOptions();
loadOptions.TryRepair = true;

PngViewOptions viewOptions = new PngViewOptions();

using (Viewer viewer = new Viewer("resume.pdf", loadOptions))
{    
    viewer.View(viewOptions);
}

Source*

Bug Fixes

  • Fixed “The object reference is not set to an instance of the object” exception (GroupDocs.ViewerNET-4480)
  • Fixed “Could not load the file. File is corrupted or damaged.” exception (GroupDocs.ViewerNET-3418)
  • Fixed artifact generation during PDF to HTML/PNG conversion (GroupDocs.ViewerNET-4826)
  • Fixed null reference exception when rendering DOCX to HTML (GroupDocs.ViewerNET-4872)
  • Fixed reason for CorruptedOrDamagedFileException (GroupDocs.ViewerNET-4832)
  • Fixed missing image resource bug on Linux (GroupDocs.ViewerNET-4868)
  • Fixed wrong page size for vector images (GroupDocs.ViewerNET-4838)
  • Fixed inability to view large files (GroupDocs.ViewerNET-4866)
  • Fixed issue with saving SVG to PNG (GroupDocs.ViewerNET-4756)
  • Fixed slow DWG to PNG conversion (GroupDocs.ViewerNET-4788)

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Viewer for .NET 24.5 Release Notes.

 English