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.
.NET developers, rejoice! GroupDocs.Viewer for .NET 24.5 (MSI) has been released, and it brings different new features and numerous bug fixes to boost your document viewing experience on Windows.
This release of the .NET document viewer expands file format support with the ability to process and display encapsulated PostScript (EPS) files within your C# applications.
Generate presentations as pure HTML and CSS markup for greater flexibility in post-processing and modification with GroupDocs.Viewer for .NET 24.5 on Windows. The following code example illustrates how to render presentations as pure HTML/CSS with embedded and external options 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*
Developers can conveniently repair PDF documents using this release of the .NET API. By attempting to salvage PDFs with structural issues, developers can experience improved 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.