This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example; | |
import com.groupdocs.cloud.watermark.client.*; | |
import com.groupdocs.cloud.watermark.model.*; | |
import com.groupdocs.cloud.watermark.model.requests.AddRequest; | |
import com.groupdocs.cloud.watermark.api.WatermarkApi; | |
import java.util.*; | |
public class Main { | |
public static void main(String[] args) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Get the groupdocs-conversion-cloud module into your project. | |
let groupdocs_conversion_cloud = require("groupdocs-conversion-cloud"); | |
// Set your API credentials(i.e. Client Secret, Client API). | |
const clientId = "xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"; | |
const clientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; | |
const myStorage = "test"; | |
// Now, invoke the fromKeys function of the ConvertApi class and pass the API credentials. | |
const convertApi = groupdocs_conversion_cloud.ConvertApi.fromKeys(clientId, clientSecret); | |
// Next, Initialize an instance of the ConvertSettings class. | |
const settings = new groupdocs_conversion_cloud.ConvertSettings(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example; | |
import com.groupdocs.cloud.conversion.api.*; | |
import com.groupdocs.cloud.conversion.model.*; | |
import com.groupdocs.cloud.conversion.model.requests.*; | |
import com.groupdocs.cloud.conversion.client.Configuration; | |
import com.groupdocs.cloud.conversion.client.ApiException; | |
import java.util.List; | |
// How to convert Text to PNG in Java. | |
public class Main { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using GroupDocs.Conversion.Cloud.Sdk.Api; | |
using GroupDocs.Conversion.Cloud.Sdk.Client; | |
using GroupDocs.Conversion.Cloud.Sdk.Model.Requests; | |
using System.IO; | |
using GroupDocs.Conversion.Cloud.Sdk.Model; | |
namespace GroupDocs.Conversion.CSharp | |
{ | |
// Convert MD to PDF in C# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Obtain the groupdocs-conversion-cloud module into your Node.js project. | |
let groupdocs_conversion_cloud = require("groupdocs-conversion-cloud"); | |
// Define your API credentials. | |
const clientId = "xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxxs"; | |
const clientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; | |
const myStorage = "test"; | |
// Now, call the fromKeys function of the ConvertApi class and pass the API credentials (i.e. Client Secret, Client API). | |
const convertApi = groupdocs_conversion_cloud.ConvertApi.fromKeys(clientId, clientSecret); | |
// Next, Instantiate an instance of the ConvertSettings class. | |
const settings = new groupdocs_conversion_cloud.ConvertSettings(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example; | |
import java.util.Arrays; | |
import com.groupdocs.cloud.merger.client.*; | |
import com.groupdocs.cloud.merger.model.*; | |
import com.groupdocs.cloud.merger.model.requests.*; | |
import com.groupdocs.cloud.merger.api.*; | |
public class Main { | |
// Combine Excel Sheets in Java - Excel Files Merger |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Obtain groupdocs-parser-cloud in your project. | |
const groupdocs_parser_cloud = require("groupdocs-parser-cloud"); | |
// Define your API credentials. | |
let clientId = "xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"; | |
let clientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; | |
// Instantiate an instace of the Configuration class with the Client ID and Client Secret. | |
const configuration = new groupdocs_parser_cloud.Configuration(clientId, clientSecret); | |
// Invoke the fromConfig method and pass the object of the Configuration class. | |
let parseApi = groupdocs_parser_cloud.ParseApi.fromConfig(configuration); | |
// Create an object of the FileInfo class and define the path of the source DOCX file . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Obtain the groupdocs-merger-cloud module in your app. | |
const groupdocs_merger_cloud = require("groupdocs-merger-cloud"); | |
clientId = "xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"; | |
clientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; | |
myStorage = "test"; | |
// Initialize an instance of the Configuration class with Client ID and Client Secret. | |
const configuration = new groupdocs_merger_cloud.Configuration(clientId, clientSecret); | |
// Define the API base URL. | |
configuration.apiBaseUrl = "https://api.groupdocs.cloud"; | |
// Instantiate an object of the FileApi class with the object of the Configuration class. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using GroupDocs.Conversion.Cloud.Sdk.Api; | |
using GroupDocs.Conversion.Cloud.Sdk.Client; | |
using GroupDocs.Conversion.Cloud.Sdk.Model.Requests; | |
using System.IO; | |
using GroupDocs.Conversion.Cloud.Sdk.Model; | |
namespace GroupDocs.Conversion.CSharp | |
{ | |
// Convert PNG to PPTX in C# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example; | |
import com.groupdocs.cloud.watermark.client.*; | |
import com.groupdocs.cloud.watermark.model.*; | |
import com.groupdocs.cloud.watermark.model.requests.AddRequest; | |
import com.groupdocs.cloud.watermark.api.WatermarkApi; | |
import java.util.*; | |
public class Main { | |
public static void main(String[] args) { |