Browse our Products Toggle navigation
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.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
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.
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.
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*
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); }
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.