GroupDocs.Viewer-Cloud
19.5.0
Document Viewing REST APIs for Any Platform. Boost your document viewing process to view over 50 document and image formats in any application, using our native document viewer APIs for cloud.
See the version list below for details.
Install-Package GroupDocs.Viewer-Cloud -Version 19.5.0
dotnet add package GroupDocs.Viewer-Cloud --version 19.5.0
<PackageReference Include="GroupDocs.Viewer-Cloud" Version="19.5.0" />
paket add GroupDocs.Viewer-Cloud --version 19.5.0
.NET Cloud REST API for Document Rendering
This REST API enhances your C#, ASP.NET, & other .NET based cloud apps to render 85+ types of file formats to image, PDF or HTML formats from within your apps.
Cloud Document Viewer Features
- Support for rendering lots of document and image file formats.
- Fetch the list of all installed fonts or delete the fonts cache.
- Download HTML page resources, e.g., images, CSS, fonts etc.
- Render a document to PDF for HTML or image representation and download it.
- Fetch document information via various methods.
- Obtain list of links to document pages as HTML or images.
- Fetch and download ZIP archive of document pages as HTML or images.
- Rotate and reorder document pages.
- Specify image quality while rendering PDF as HTML.
- Decrease the resultant file size by excluding fonts when rendering as HTML.
- Render specific sections of worksheets defined as "print area" as HTML.
- Choose to include or exclude hidden content in Excel documents.
- Make the output content in HTML and SVG minified.
- Render a document to responsive HTML.
- Render email messages & render Outlook data files as HTML.
- Get list of all email attachments in its HTML or image representation.
- Download resources of a specific email attachment page for HTML representation.
Enhancements in Version 19.5.0
- Improved Cloud products API Reference grouping.
For the detailed notes, please visit GroupDocs.Viewer Cloud 19.5 Release Notes.
Supported File Formats
Word Processing: DOC, DOCM, DOCX, DOT, DOTM, DOTX, ODT, OTT, RTF, TXT
Spreadsheet: XLS, XLSB, XLSM, XLSX, ODS, OTS, CSV, TSV
Presentation: PPT, PPTM, PPTX, PPS, PPSM, PPSX, POTX, POTM, ODP, OTP
Project Management: MPP, MPT
Email: EML, EMLX, MSG, OST, PST
AutoCAD: DGN, DWF, DWG, DXF, IFC, STL
Markup: HTML, MHTML
Diagram: VDW, VDX, VSD, VSDM, VSDX, VSS, VSSM, VSSX, VST, VSTM, VSTX, VSX, VTX
Note: ONE
Portable: PDF, TEX, XPS
Image: BMP, CGM, DCM, DJVU, DNG, EMF, EPS, GIF, ICO, JP2, JPF, JPX, J2K, J2C, JPM, JPG, JPEG, ODG, PCL, PNG, PS, PSD, SVG, TIF, TIFF, WEBP, WMF
eBook: EPUB, MOBI
Platform Independence
GroupDocs.Viewer Cloud's platform independent document manipulation API is a true REST API that can be used from any platform. You can use it with any language or platform that supports REST, be it the web, desktop, mobile, or the cloud. The API integrates with other cloud services to provide you the flexibility you require for processing documents. It is suitable for the most types of businesses, documents, or content.
Getting Started
You do not need to install anything to get started with GroupDocs.Viewer Cloud SDK for .Net. Just create an account at GroupDocs for Cloud and get your application information.
Simply execute Install-Package GroupDocs.Viewer-Cloud
from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Viewer assembly in your project. If you already have GroupDocs.Viewer Cloud SDK for .Net and want to upgrade it, please execute Update-Package GroupDocs.Viewer-Cloud
to get the latest version.
Please check the GitHub Repository for other common usage scenarios.
Render DOCX Page as Responsive HTML
var configuration = new Configuration
{
AppSid = Sid,
AppKey = Key
};
var apiInstance = new ViewerApi(configuration);
var request = new HtmlGetPageRequest
{
FileName = "input.docx",
EnableResponsiveRendering = true,
PageNumber = 1,
EmbedResources = true,
Folder = null,
Storage = null,
};
var response = apiInstance.HtmlGetPage(request);
Debug.Print("Result as IO Stream :" + response.Length.ToString());
Use C# to Render Outlook Data Files as HTML
var configuration = new Configuration("XXXX-XXXX-XXX", "XXXXXXXXXXX");
var apiInstance = new ViewerApi(configuration);
var file = "data.pst";
var htmlOptions = new HtmlOptions
{
EmbedResources = true,
OutlookOptions = new OutlookOptions
{
MaxItemsInFolder = 5
}
};
var request = new HtmlCreatePagesCacheFromContentRequest
{
HtmlOptions = this.SerializeObject(htmlOptions),
File = this.GetTestFileStream(file),
FileName = null,
FontsFolder = null,
Folder = FromContentFolder,
Storage = null,
};
var response = apiInstance.HtmlCreatePagesCacheFromContent(request);
Console.Write("File name:" + response.FileName);
Console.Write("PageCount: " + response.Pages.Count);
Product Page | Documentation | API Reference | Code Samples | Blog | Free Support | Free Trial
.NET Cloud REST API for Document Rendering
This REST API enhances your C#, ASP.NET, & other .NET based cloud apps to render 85+ types of file formats to image, PDF or HTML formats from within your apps.
Cloud Document Viewer Features
- Support for rendering lots of document and image file formats.
- Fetch the list of all installed fonts or delete the fonts cache.
- Download HTML page resources, e.g., images, CSS, fonts etc.
- Render a document to PDF for HTML or image representation and download it.
- Fetch document information via various methods.
- Obtain list of links to document pages as HTML or images.
- Fetch and download ZIP archive of document pages as HTML or images.
- Rotate and reorder document pages.
- Specify image quality while rendering PDF as HTML.
- Decrease the resultant file size by excluding fonts when rendering as HTML.
- Render specific sections of worksheets defined as "print area" as HTML.
- Choose to include or exclude hidden content in Excel documents.
- Make the output content in HTML and SVG minified.
- Render a document to responsive HTML.
- Render email messages & render Outlook data files as HTML.
- Get list of all email attachments in its HTML or image representation.
- Download resources of a specific email attachment page for HTML representation.
Enhancements in Version 19.5.0
- Improved Cloud products API Reference grouping.
For the detailed notes, please visit GroupDocs.Viewer Cloud 19.5 Release Notes.
Supported File Formats
Word Processing: DOC, DOCM, DOCX, DOT, DOTM, DOTX, ODT, OTT, RTF, TXT
Spreadsheet: XLS, XLSB, XLSM, XLSX, ODS, OTS, CSV, TSV
Presentation: PPT, PPTM, PPTX, PPS, PPSM, PPSX, POTX, POTM, ODP, OTP
Project Management: MPP, MPT
Email: EML, EMLX, MSG, OST, PST
AutoCAD: DGN, DWF, DWG, DXF, IFC, STL
Markup: HTML, MHTML
Diagram: VDW, VDX, VSD, VSDM, VSDX, VSS, VSSM, VSSX, VST, VSTM, VSTX, VSX, VTX
Note: ONE
Portable: PDF, TEX, XPS
Image: BMP, CGM, DCM, DJVU, DNG, EMF, EPS, GIF, ICO, JP2, JPF, JPX, J2K, J2C, JPM, JPG, JPEG, ODG, PCL, PNG, PS, PSD, SVG, TIF, TIFF, WEBP, WMF
eBook: EPUB, MOBI
Platform Independence
GroupDocs.Viewer Cloud's platform independent document manipulation API is a true REST API that can be used from any platform. You can use it with any language or platform that supports REST, be it the web, desktop, mobile, or the cloud. The API integrates with other cloud services to provide you the flexibility you require for processing documents. It is suitable for the most types of businesses, documents, or content.
Getting Started
You do not need to install anything to get started with GroupDocs.Viewer Cloud SDK for .Net. Just create an account at GroupDocs for Cloud and get your application information.
Simply execute Install-Package GroupDocs.Viewer-Cloud
from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Viewer assembly in your project. If you already have GroupDocs.Viewer Cloud SDK for .Net and want to upgrade it, please execute Update-Package GroupDocs.Viewer-Cloud
to get the latest version.
Please check the GitHub Repository for other common usage scenarios.
Render DOCX Page as Responsive HTML
var configuration = new Configuration
{
AppSid = Sid,
AppKey = Key
};
var apiInstance = new ViewerApi(configuration);
var request = new HtmlGetPageRequest
{
FileName = "input.docx",
EnableResponsiveRendering = true,
PageNumber = 1,
EmbedResources = true,
Folder = null,
Storage = null,
};
var response = apiInstance.HtmlGetPage(request);
Debug.Print("Result as IO Stream :" + response.Length.ToString());
Use C# to Render Outlook Data Files as HTML
var configuration = new Configuration("XXXX-XXXX-XXX", "XXXXXXXXXXX");
var apiInstance = new ViewerApi(configuration);
var file = "data.pst";
var htmlOptions = new HtmlOptions
{
EmbedResources = true,
OutlookOptions = new OutlookOptions
{
MaxItemsInFolder = 5
}
};
var request = new HtmlCreatePagesCacheFromContentRequest
{
HtmlOptions = this.SerializeObject(htmlOptions),
File = this.GetTestFileStream(file),
FileName = null,
FontsFolder = null,
Folder = FromContentFolder,
Storage = null,
};
var response = apiInstance.HtmlCreatePagesCacheFromContent(request);
Console.Write("File name:" + response.FileName);
Console.Write("PageCount: " + response.Pages.Count);
Product Page | Documentation | API Reference | Code Samples | Blog | Free Support | Free Trial
Release Notes
https://docs.groupdocs.cloud/display/viewercloud/GroupDocs.Viewer+Cloud+19.5+Release+Notes
Dependencies
-
.NETFramework 2.0
- Newtonsoft.Json (>= 9.0.1)
-
.NETStandard 1.3
- FubarCoder.RestSharp.Portable.Core (>= 4.0.7)
- FubarCoder.RestSharp.Portable.HttpClient (>= 4.0.7)
- JsonSubTypes (>= 1.1.3)
- Newtonsoft.Json (>= 10.0.3)
Used By
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version History
Version | Downloads | Last updated |
---|---|---|
20.5.0 | 142 | 6/3/2020 |
20.3.0 | 141 | 3/26/2020 |
19.5.0 | 233 | 5/27/2019 |
19.4.0 | 204 | 4/17/2019 |
19.3.2 | 198 | 4/4/2019 |
19.3.1 | 200 | 4/2/2019 |
19.3.0 | 217 | 3/7/2019 |
18.11.0 | 262 | 1/9/2019 |
18.7.0 | 289 | 9/13/2018 |
18.7.0-alpha-20180913075048 | 247 | 9/13/2018 |
18.5.0 | 385 | 6/5/2018 |
18.2.0 | 404 | 3/2/2018 |
17.11.1 | 383 | 1/23/2018 |
17.11.0 | 374 | 1/22/2018 |