Sort Score
Result 10 results
Languages All
Labels All
Results 161 - 170 of 3,601 for

import

(0.05 sec)
  1. 使用 Java SDK 将 PowerPoint 转换为图像:指南

    了解如何使用 REST API 在 Java 中以编程方式将 PowerPoint 转换为 PNG 图像。我们的分步指南将帮助您轻松理解该过程。...classes; import com.groupdocs.cloud.conversion.api.*; import com.groupdocs...groupdocs.cloud.conversion.model.*; import com.groupdocs.cloud.conversion...

    blog.groupdocs.cloud/zh/conversion/convert-powe...
  2. 6. Convert to PDF Formats | Documentation

    GroupDocs.Conversion Cloud REST API allows to convert the supported document formats to PDF Formats and returns the output document storage URL and also support to get result as a stream. Convert to PDF Formats You can convert the supported document formats to PDF Formats and get output as storage URL. Resource The following GroupDocs.Conversion Cloud REST API resource has been used in the convert to PDF format example. cURL example Request curl -X POST "https://api....s ; import com.groupdocs.cloud.conversion.api.* ; import com...ApiException ; import com.groupdocs.cloud.conversion.model.* ; import com...

    docs.groupdocs.cloud/conversion/convert-to-pdf-...
  3. Quick Start | Documentation

    Create an account Creating an account is very simple. Go to https://dashboard.groupdocs.cloud to create a free account. Create an API client app Before you can make any requests to GroupDocs Cloud API you need to get Client Id and Client Secret. That will be used to invoke the GroupDocs Cloud API. You can get it from existing Application or create new Application from Applications View of GroupDocs Cloud Dashboard....DocumentOperations ; import java.util.Arrays ; import com.groupdocs...client.* ; import com.groupdocs.cloud.merger.model.* ; import com.groupdocs...

    docs.groupdocs.cloud/merger/quick-start/
  4. Extract Pages | Documentation

    Extract Pages by Exact Page Numbers This REST API allows extracting pages from source documents by providing exact page numbers via Pages collection. The result is a new document that contains only specified pages from a source document. For protected documents, it is also required to provide a password. The following example demonstrates how to extract pages 2,4,7 from a source document into a new document. Resource URI HTTP POST ~/Pages/Extract Swagger UI lets you call this REST API directly from the browser....ExtractPages ; import java.util.Arrays ; import com.groupdocs...client.* ; import com.groupdocs.cloud.merger.model.* ; import com.groupdocs...

    docs.groupdocs.cloud/merger/extract-pages/
  5. Split Document | Documentation

    Split the Document Into Several One-Page Documents GroupDocs.Merger Cloud REST API provides an ability to split the document into several one-page documents by providing exact page numbers. The following example demonstrates how to split the document into three one-page documents with 3rd, 6th, and 8th pages. As a result, these documents will be produced: Document name Page numbers document_0 3 document_1 6 document_2 8 Resource URI HTTP POST ~/join Swagger UI lets you call this REST API directly from the browser....SplitDocument ; import java.util.Arrays ; import com.groupdocs...client.* ; import com.groupdocs.cloud.merger.model.* ; import com.groupdocs...

    docs.groupdocs.cloud/merger/split-document/
  6. Pptx to pdf how it works - Free Support Forum -...

    Hello, I am trying to use convert Api to takes a PPTX file and transform to PDF with an SDK on Python-Django but I dont know what I am doing wrong. Now with my code doesnt get into response and on the other hand say I …... # Import module import groupdocs_conversion_cloud...groupdocs_conversion_cloud from shutil import copyfile # Get your client_id and...

    forum.groupdocs.cloud/t/pptx-to-pdf-how-it-work...
  7. Join Multiple Documents | Documentation

    This REST API allows merging two or more documents into a single resultant document. For the simplest scenario of combining several documents together it’s only needed to provide storage path for each file. For protected documents, it is also required to provide a password. The table below contains the full list of properties that can be specified for each joined document. Name Description Comment FilePath The file path in the storage Required property StorageName Storage name It could be omitted for default storage....DocumentOperations ; import java.util.Arrays ; import com.groupdocs...client.* ; import com.groupdocs.cloud.merger.model.* ; import com.groupdocs...

    docs.groupdocs.cloud/merger/join-multiple-docum...
  8. Remove Pages | Documentation

    This REST API provides an ability to remove a single page or a collection of specific page numbers from the source document. There are several ways to specify page numbers to be removed from a document: Provide exact page numbers via Pages collection; Specify pages range start/end page numbers. There is also an ability to get only even/odd pages from the specified page range by setting RangeMode property. For protected documents, it is also required to provide a password....PagesOperations ; import java.util.Arrays ; import com.groupdocs...client.* ; import com.groupdocs.cloud.merger.model.* ; import com.groupdocs...

    docs.groupdocs.cloud/merger/remove-pages/
  9. Get Supported File Formats | Documentation

    GroupDocs.Viewer Cloud REST APIs support to render over 50 file formats to HTML5 or Image formats for the whole document, page by page or custom range of pages. To get list of supported formats, You can use the below API. The following GroupDocs.Viewer Cloud REST API resource has been used in the Supported File Formats example. cURL example Request curl -X GET "https://api.groupdocs.cloud/v2.0/viewer/formats" -H "accept: application/json" -H "authorization: Bearer [Access Token]" Resonse { "formats": [ { "extension": "....Formats ; Python # Import modules import groupdocs_viewer_cloud...from Common_Utilities.Utils import Common_Utilities class Vie...

    docs.groupdocs.cloud/viewer/get-supported-file-...
  10. Get Document Information | Documentation

    This REST API allows us to obtain basic information about the document and it’s pages properties. The endpoint accepts the document storage path as input payload. Here is the list of properties that can be obtained for a document: Document file extension; Document size in bytes; Document file format. Here is the list of properties that can be obtained for document pages: Page width in pixels (when converted to the image); Page height in pixels (when converted to image); Page number; Visible property that indicates whether the page is visible or not....examples ; import com.groupdocs.cloud.merger.client.* ; import com.groupdocs...groupdocs.cloud.merger.model.* ; import com.groupdocs.cloud.merger...

    docs.groupdocs.cloud/merger/get-document-inform...