Sort Score
Result 10 results
Languages All
Labels All
Results 111 - 120 of 600 for

annotation curl

(0.13 sec)
  1. 11. Convert nsf storage to eml documents | Docu...

    This example demonstrates how to convert nsf storage into set of eml documents with load options. There are steps that usage of GroupDocs.Conversion Cloud consists of: Upload input document into cloud storage Convert document Download converted document from storage Steps 1 and 3 are storage operations, please refer to this GroupDocs.Conversion Cloud documentation for usage details. Step 3 is not needed if the “OutputPath” option is not provided: the convert API method will return the converted document in the response body....Annotation Product Solution GroupDocs...API directly from the browser. cURL example Linux/MacOS/Bash # First...

    docs.groupdocs.cloud/conversion/convert-nsf-doc...
  2. Adjust output image size | Documentation

    When CAD drawings are rendered, the size of the render result is adjusted by API automatically, the biggest side (width or height depending on which one is bigger) is set 2000 px, another side is set value based on width-to-length ratio. You may adjust the size of resulting document by setting CadOptions as show in example. 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....Annotation Product Solution GroupDocs...API directly from the browser. cURL example Linux/MacOS/Bash # First...

    docs.groupdocs.cloud/viewer/adjust-output-image...
  3. Enable font hinting | Documentation

    To adjust the display of an outline font (learn more about font hinting) when rendering PDF documents into image GroupDocs.Viewer Cloud provides PdfOptions.EnableFontHinting setting as shown below: NOTE: this option is supported when rendering into PNG and JPG. 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....Annotation Product Solution GroupDocs...API directly from the browser. cURL example Linux/MacOS/Bash # First...

    docs.groupdocs.cloud/viewer/enable-font-hinting/
  4. HTML Viewer - Optimize for printing | Documenta...

    If you need to optimize HTML output for printing you should set ForPrinting option HtmlViewOptions. This option implemented for: Presentation documents: PPT,PPS,PPTX,PPSX,ODP,FODP,OTP,POT,POTX,POTM,PPTM,PPSM Diagram documents: VSD,VSDX,VSS,VST,VSX,VTX,VDW,VDX,VSSX,VSTX,VSDM,VSSM,VSTM Meta file formats: WMF, WMZ, EMF, EMZ If ForPrinting option is enabled output HTML pages will be converted to vector SVG format for better quality for print and page layout. 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....Annotation Product Solution GroupDocs...API directly from the browser. cURL example Linux/MacOS/Bash # First...

    docs.groupdocs.cloud/viewer/html-viewer-optimiz...
  5. 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....Annotation Product Solution GroupDocs...API directly from the browser. cURL example Linux/MacOS/Bash # First...

    docs.groupdocs.cloud/merger/get-document-inform...
  6. Get Document Information | Documentation

    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 Pages count, size and visibility Text coordinates Attachments count and names other properties, by document type The following GroupDocs.Viewer Cloud REST API resource has been used to get document information. Curl example Linux/MacOS/Bash # First get JSON Web Token # Please get your Client Id and Client Secret from https://dashboard....Annotation Product Solution GroupDocs...resource has been used to get . cURL example Linux/MacOS/Bash # First...

    docs.groupdocs.cloud/viewer/get-document-inform...
  7. Extract Metadata By Property Value | Documentation

    This REST API allows to extract metadata properties from the document choosing the properties which values are matching the specified value. Curl example The following example demonstrates how to extract metadata information from all properties with the “Microsoft Office Word” value. Linux/MacOS/Bash # Get JSON Web Token # Set CLIENT_ID and CLIENT_SECRET as environment variables or replace them directly in the command. Curl -v "https://api.groupdocs.cloud/connect/token" \ -X POST \ -d "grant_type=client_credentials&client_id=$CLIENT_ID&client_secret=$CLIENT_SECRET" \ -H "Content-Type: application/x-www-form-urlencoded" \ -H "Accept: application/json" # Example: retrieve metadata (join several documents into one) Curl -v "https://api....Annotation Product Solution GroupDocs...matching the specified value. cURL example The following example...

    docs.groupdocs.cloud/metadata/extract-metadata-...
  8. Remove Metadata By Tag | Documentation

    This REST API allows to remove metadata properties from the document choosing the properties by exact tag and category name. Curl example The following example demonstrates how to remove all metadata properties with the “Created” tag name. Linux/MacOS/Bash # Get JSON Web Token # Please get your Client Id and Client Secret from https://dashboard.groupdocs.cloud/applications. Curl -v "https://api.groupdocs.cloud/connect/token" \ -X POST \ -d "grant_type=client_credentials&client_id=$CLIENT_ID&client_secret=$CLIENT_SECRET" \ -H "Content-Type: application/x-www-form-urlencoded" \ -H "Accept: application/json" # Example: remove metadata from a document Curl -v "https://api....Annotation Product Solution GroupDocs...exact tag and category name. cURL example The following example...

    docs.groupdocs.cloud/metadata/remove-metadata-b...
  9. Add Metadata By Tag | Documentation

    This REST API allows to add metadata properties to the document choosing the right place to add by exact tag and category name. Curl example The following example demonstrates how to add metadata date and time information in all properties that have specified tag. Linux/MacOS/Bash # Get JWT token Curl -v 'https://api.groupdocs.cloud/connect/token' \ -X POST \ -d "grant_type=client_credentials&client_id=$CLIENT_ID&client_secret=$CLIENT_SECRET" \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Accept: application/json' # Join several documents into one Curl -v 'https://api....Annotation Product Solution GroupDocs...exact tag and category name. cURL example The following example...

    docs.groupdocs.cloud/metadata/add-metadata-by-tag/
  10. Extract Whole Metadata Tree | Documentation

    This REST API allows to extract whole metadata properties tree. Curl example The following example demonstrates how to retrieve all metadata properties. Linux/MacOS/Bash # First get JSON Web Token # Please get your Client Id and Client Secret from https://dashboard.groupdocs.cloud/applications. Curl -v "https://api.groupdocs.cloud/connect/token" \ -X POST \ -d "grant_type=client_credentials&client_id=$CLIENT_ID&client_secret=$CLIENT_SECRET" \ -H "Content-Type: application/x-www-form-urlencoded" \ -H "Accept: application/json" # Example to join several documents into one Curl -v "https://api.groupdocs.cloud/v1.0/metadata" \ -X POST \ -H "Content-Type: application/json" \ -H "Accept: application/json" \ -H "Authorization: Bearer $JWT_TOKEN" \ -d '{ "FileInfo": { "FilePath": "documents/input....Annotation Product Solution GroupDocs...whole metadata properties tree. cURL example The following example...

    docs.groupdocs.cloud/metadata/extract-whole-met...