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 (DLLs only)

Download   Support Forum 

File Details

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

Description

This ZIP file contains only the GroupDocs.Viewer for .NET 24.5 assemblies. The assemblies are the same as in the MSI installer of the product of the same version. Download this if you want to use GroupDocs.Viewer for .NET without the MSI installer. This ZIP download does not contain the demo projects.

File Details

This package provides the DLLs for GroupDocs.Viewer for .NET 24.5, delivers convenient integration for the .NET developers and allows them to try out new features and fixes for a seamless document viewing experience.

Support for Adobe Illustrator EPS files

The .NET document viewer now boasts extended file format support with the addition of the EPS files. This version includes the ability to render encapsulated PostScript (EPS) files within your C# file rendering applications.

Render Presentations in Pure HTML

Create presentations as pure HTML and CSS markup for enhanced flexibility in post-processing with GroupDocs.Viewer for .NET 24.5. The following code example shows how to use embedded and external options to render presentations as pure HTML/CSS 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*

PDF Document Repairer

.NET developers can seamlessly repair PDF documents with this .NET API release. Salvage the PDFs with structural issues and experience enriched 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 inability to view large files (GroupDocs.ViewerNET-4866)
  • 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 issue with saving SVG to PNG (GroupDocs.ViewerNET-4756)
  • Fixed wrong page size for vector images (GroupDocs.ViewerNET-4838)
  • Fixed reason for CorruptedOrDamagedFileException (GroupDocs.ViewerNET-4832)
  • Fixed missing image resource bug on Linux (GroupDocs.ViewerNET-4868)
  • Fixed null reference exception when rendering DOCX to HTML (GroupDocs.ViewerNET-4872)
  • 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