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 System.IO; | |
| using Aspose.Html.Cloud.Sdk.Api; | |
| using Aspose.Html.Cloud.Sdk.Model; | |
| using Aspose.Html.Cloud.Sdk.Client; | |
| class HtmlToPngDemo | |
| { | |
| static void 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
| import com.aspose.ocr.cloud.api.OcrApi; | |
| import com.aspose.ocr.cloud.model.*; | |
| import com.aspose.ocr.cloud.ApiException; | |
| import java.io.*; | |
| public class PdfToCsvConverter { | |
| private static final String CLIENT_ID = "YOUR_CLIENT_ID"; | |
| private static final String CLIENT_SECRET = "YOUR_CLIENT_SECRET"; | |
| 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
| using System; | |
| using System.IO; | |
| using Aspose.CAD.Cloud.Sdk; | |
| using Aspose.CAD.Cloud.Sdk.Model; | |
| class Program | |
| { | |
| static void Main() | |
| { | |
| // 1. Authenticate |
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
| import os | |
| from asposeemailcloud import EmailApiClient, EmailApi | |
| # ------------------------------------------------------------------ | |
| # Configuration – replace placeholders with your actual credentials | |
| # ------------------------------------------------------------------ | |
| client_id = "YOUR_CLIENT_ID" | |
| client_secret = "YOUR_CLIENT_SECRET" | |
| # Initialize the API client (the client manages token acquisition) |
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
| import os | |
| from asposeemailcloud import EmailApi, Configuration, ApiException | |
| # ==== Configuration ==== | |
| client_id = "YOUR_CLIENT_ID" | |
| client_secret = "YOUR_CLIENT_SECRET" | |
| config = Configuration() | |
| config.client_id = client_id | |
| config.client_secret = client_secret |
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
| import asposeemailcloud | |
| from asposeemailcloud import ApiClient, EmailApi, EmailDto, Attachment, MailAddress | |
| # Initialize API client | |
| client_id = "YOUR_CLIENT_ID" | |
| client_secret = "YOUR_CLIENT_SECRET" | |
| api_client = ApiClient(client_id, client_secret) | |
| email_api = EmailApi(api_client) | |
| # Build the email message |
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
| import asposeemailcloud | |
| from asposeemailcloud import ApiClient, Configuration, MailApi, MailMessage, Attachment | |
| # ------------------------------------------------------------------------- | |
| # Initialize API client | |
| # ------------------------------------------------------------------------- | |
| client_id = "YOUR_CLIENT_ID" | |
| client_secret = "YOUR_CLIENT_SECRET" | |
| api_client = ApiClient(configuration=Configuration(client_id, client_secret)) |
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 System.IO; | |
| using Aspose.CAD.Cloud.Sdk.Api; | |
| using Aspose.CAD.Cloud.Sdk.Model; | |
| using Aspose.CAD.Cloud.Sdk.Client; | |
| class DwgToPngConverter | |
| { | |
| static async Task 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
| import com.aspose.cad.cloud.ApiClient; | |
| import com.aspose.cad.cloud.ApiException; | |
| import com.aspose.cad.cloud.Configuration; | |
| import com.aspose.cad.cloud.api.CadApi; | |
| import com.aspose.cad.cloud.model.CadConversionOptions; | |
| import com.aspose.cad.cloud.model.FileInfo; | |
| import java.io.File; | |
| import java.io.FileOutputStream; | |
| import java.io.InputStream; |
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
| import com.aspose.cad.cloud.ApiException; | |
| import com.aspose.cad.cloud.api.CadApi; | |
| import com.aspose.cad.cloud.model.*; | |
| import com.aspose.cad.cloud.Configuration; | |
| import java.io.File; | |
| import java.nio.file.Files; | |
| import java.nio.file.Paths; | |
| public class DwtToPdfConverter { |
NewerOlder