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 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.
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.
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*
.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); }
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.