GroupDocs.Conversion Cloud 19.5 Release Notes

Major Features

  • New endpoint for retrieving a document metadata
  • Conversions from cdr and cmx now supported
  • Extended options when converting to image

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
CONVERSIONCLOUD-311Retrieve basic metadata of a documentFeature
CONVERSIONCLOUD-314Support conversion from cdrFeature
CONVERSIONCLOUD-315Adjusting brightness, contrast, gamma when converting to imageFeature
CONVERSIONCLOUD-316Flip image option when converting to imageFeature
CONVERSIONCLOUD-318Conversions from cmxFeature
CONVERSIONCLOUD-313File API methods throw error on path with front slashBug

Public API Examples

Retrieve document metadata


### Get document metadata
curl -X GET "https://api-qa.groupdocs.cloud/v2.0/conversion/info?FilePath#words%2Fdocx%2Ffour-pages.docx" -H "accept: application/json" -H "authorization: Bearer [AccessToken]"

Content-type: application/json
{
  "fileType": "docx",
  "pageCount": 4,
  "size": 8651,
  "width": 0,
  "height": 0,
  "horizontalResolution": 0,
  "verticalResolution": 0,
  "bitsPerPixel": 0,
  "title": "",
  "author": "",
  "createdDate": "2016-05-18T00:00:00Z",
  "modifiedDate": "0001-01-01T00:00:00",
  "layers": null,
  "isPasswordProtected": false
}