Convert VDW to all common formats
Convert page by page VDW or custom range of pages
Watermark pages
Get high quality PSB output files
Password protect output document
APIs are secured and require authentication
GroupDocs.Conversion REST API has the capability to perform conversion on a number of document formats beside VDW and PSB. The information about the formats supported by the API can be obtained by using the code mentioned below:
# Get your App SID and App Key at https://dashboard.groupdocs.cloud (free registration is required).
# Getting instance of the API
api = GroupDocsConversionCloud::ConversionApi.from_keys($app_sid, $app_key)
$request = GroupDocsConversionCloud::GetSupportedConversionTypesRequest.new()
# Retrieve supported file formats
$response = api.get_supported_conversion_types($request)
# Display all the supported file formats
puts("= Supported File Formats =")
$response.each do |format|
puts("#{format.source_format} to [#{format.target_formats.join(', ')}]")
end
GroupDocs.Conversion Cloud API is completely independent of your operating system, database system or development language. You can use any language and platform that supports HTTP to interact with our API. However, manually writing client code can be difficult, error-prone and time-consuming. Therefore, we have provided and support API SDKs in many development languages in order to make it easier to integrate with us. If you use SDK, it hides the REST API calls and lets you use GroupDocs.Conversion Cloud API features in a native way for your preferred language.
The GroupDocs.Conversion Cloud API is secured and requires authentication to convert VDW to PSB. Users need to register at GroupDocs Cloud and get their app access key ID (appSID) and app secret access key. Authenticated requests require a signature and AppSID query parameters or OAuth 2.0 authorization header.
GroupDocs.Conversion Cloud SDK is 100% tested and out of the box running. The SDK is open source and has an MIT license. You can use it, and even customize it for absolutely free of charge.