Skip to content

Instantly share code, notes, and snippets.

@groupdocs-cloud-gists
groupdocs-cloud-gists / Convert Excel to JPG
Last active April 15, 2024 02:44
Excel to JPG conversion
How to convert Excel to JPG with .NET REST API
How to convert Excel to JSON in C# .NET
Learn how to convert Excel to HTML with .NET REST API
@groupdocs-cloud-gists
groupdocs-cloud-gists / XLSX to PDF
Last active March 31, 2024 21:50
Convert Excel to PDF
How to convert Excel to PDF online
How to convert PDF into JPG image with C# .NET
Learn how to convert XLSX to CSV with .NET REST API
@groupdocs-cloud-gists
groupdocs-cloud-gists / Convert PDF to HTML
Last active March 23, 2024 19:14
Turn PDF into HTML
Develop PDF to HTML converter
How to convert Web page to PDF with C# .NET
@groupdocs-cloud-gists
groupdocs-cloud-gists / json to csv
Last active March 10, 2024 04:44
Transform JSON to CSV
Develop JSON to CSV converter with C# .NET
@groupdocs-cloud-gists
groupdocs-cloud-gists / Convert-JSON-to-PDF.js
Created January 2, 2024 14:04
Convert JSON to PDF in Node.js - JSON to PDF Converter
// Get the groupdocs-conversion-cloud module into your project.
let groupdocs_conversion_cloud = require("groupdocs-conversion-cloud");
// Define your API credentials
const clientId = "xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
const clientSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
myStorage = "test";
// Initialize an object of the ConvertApi with the API credentials.
const convertApi = groupdocs_conversion_cloud.ConvertApi.fromKeys(clientId, clientSecret);
// Instantiate an instance of the ConvertSettings class and set the values such as filePath, format, storageName and outputPath.
const settings = new groupdocs_conversion_cloud.ConvertSettings();