GroupDocs.Viewer Cloud also provides the features to render only the selected page numbers. You can specify a list of the document pages to be rendered. Follow the below steps to achieve this functionality.
The following code sample shows how to render first and third pages of a document.
API Usage There are steps that usage of GroupDocs.Viewer Cloud consists of:
Upload input document into cloud storage Render document or get document info Download rendered document from storage Steps 1 and 3 are storage operations, please refer to this File API documentation for usage details....Editor Product Solution GroupDocs...-> createView ( $request ); Java // For complete examples and...
GroupDocs.Viewer Cloud API enables you to to retrieve a list of document attachments from your emails, Outlook data files, archives and PDF documents.
Following example demonstrates on how to get all attachments from MSG file.
API Usage There are steps that usage of GroupDocs.Viewer Cloud consists of:
Upload input document into cloud storage Render document or get document info Download rendered document from storage Steps 1 and 3 are storage operations, please refer to this File API documentation for usage details....Editor Product Solution GroupDocs...-> createView ( $request ); Java // For complete examples and...
GroupDocs.Viewer Cloud does not render tracked changes of Word Processing documents by default. If you want to see tracked changes in your rendering result, use WordProcessingOptions.RenderTrackedChanges property.
The following code sample shows how to render a Word document including tracked changes.
API Usage There are steps that usage of GroupDocs.Viewer Cloud consists of:
Upload input document into cloud storage Render document or get document info Download rendered document from storage Steps 1 and 3 are storage operations, please refer to this File API documentation for usage details....Editor Product Solution GroupDocs...-> createView ( $request ); Java // For complete examples and...
This REST API allows to extract metadata properties from the document choosing the properties which names are matching the specified regular expression.
cURL example The following example demonstrates how to extract metadata information from all properties with the “dc” string in the beginning of the name.
Request # First get JSON Web Token # Please get your Client Id and Client Secret from https://dashboard.groupdocs.cloud/applications. # Kindly place Client Id in client_id and Client Secret in "client_secret" argument....Editor Product Solution GroupDocs...add an SDK to your project. C# Java Was this page helpful? Not really...
GroupDocs.Viewer Cloud renders all layers of the CAD drawing by default. To render specific layers you can set the layers that you want to render by adding them into the CadOptions.Layers property.
The following code sample shows how to render a specific layer of a CAD drawing.
API Usage There are steps that usage of GroupDocs.Viewer Cloud consists of:
Upload input document into cloud storage Render document or get document info Download rendered document from storage Steps 1 and 3 are storage operations, please refer to this File API documentation for usage details....Editor Product Solution GroupDocs...-> createView ( $request ); Java // For complete examples and...
Image Viewer allows you to set custom output image size in pixels through Width and Height properties in ImageOptions.
Keep in mind that aspect ratio is automatically applied when you set Width or Height only.
This example demonstrates how to set output image size
API Usage There are steps that usage of GroupDocs.Viewer Cloud consists of:
Upload input document into cloud storage Render document or get document info Download rendered document from storage Steps 1 and 3 are storage operations, please refer to this File API documentation for usage details....Editor Product Solution GroupDocs...-> createView ( $request ); Java // For complete examples and...
This REST API allows extracting images from specific pages only by setting pages range. This operation supports only documents with pages. You need to specify StartPageNumber and CountPagesToExtract parameters besides the basic options.
Resource The following GroupDocs.Parser Cloud REST API resource has been used in the Extract images by a page number example.
cURL example The following example demonstrates how to extract images by a page number range.
Request # First get JSON Web Token # Please get your Client Id and Client Secret from https://dashboard....Editor Product Solution GroupDocs...add an SDK to your project. C# Java Was this page helpful? Not really...
This REST API allows to obtain basic information about the document and it’s properties.
It returns InfoResult data structure, which contains the list of properties:
Document file format File extension File size Pages count Resource The following GroupDocs.Viewer Cloud REST API resource has been used to get document information.
cURL example Request * First get JSON Web Token * Please get your Client Id and Client Secret from . Kindly place Client Id in "client_id" and Client Secret in "client_secret" argument....Editor Product Solution GroupDocs...GetDocumentInfo ( request ); Java // For complete examples and...
This REST API allows add attachments into pdf documents. Attachments should be uploaded into cloud storage before importing.
The table below contains the full list of properties that can be specified.
Name Description Comment FilePath The file path in the storage Required property StorageName Storage name Could be omitted for default storage VersionId File version Id Useful for storages that support file versioning Password The password to open file Should be specified only for password-protected documents Attachments Collection of attachments files paths OutputPath Path to resultant document Required Resource URI HTTP POST ~/import Swagger UI lets you call this REST API directly from the browser....Editor Product Solution GroupDocs...calling api: " + e . Message ); } Java & Android // For complete examples...