This short tutorial explains the process to convert MHT file to PDF using C# REST API. You will learn to automatically transform MHT to PDF using C# REST API using the .NET-based Cloud SDK. It will also share details to retrieve the result of the conversion from the Cloud storage.
Prerequisite
- Create an account API credentials to change MHT to PDF
- Download Aspose.PDF Cloud SDK for Dotnet for converting MHT to PDF
- Setup C# project with the above SDK
Steps to Convert MHT to PDF using C# RESTful Service
- Instantiate the PdfApi service with the Client key and secret to change MHT to PDF
- Read the source MHT file into a memory stream
- Upload the memory stream to the Cloud storage by assigning a unique name
- Call the GetMhtInStorageToPdf() method to transform the uploaded MHT file into a PDF file
- Parse the API response to retrieve the resultant PDF file
- Save the returned stream as a PDF file on the disk
These steps define the process of exporting a file from MHT format to PDF using C# REST Interface. Commence the process by uploading the source MHT file to the Cloud storage and calling the GetMhtInStorageToPdf() method to convert it to a PDF in the Cloud. The API response contains the stream object that is saved as a PDF file.
Code to Change MHT to PDF using C# Low Code API
using System; | |
using System.IO; | |
using Aspose.Pdf.Cloud.Sdk.Api; | |
using Aspose.Pdf.Cloud.Sdk.Model; | |
using System.Collections.Generic; | |
namespace Aspose.PDF.Cloud.Examples.Kb | |
{ | |
public class PdfTasks //Class for MHT to PDF | |
{ | |
public static void ConvertMhtToPdf() | |
{ | |
// Initialize API with credentials | |
var pdfService = new PdfApi("Client Secret", "Client ID"); | |
string documentName = "MhtExample.mht"; | |
// Upload the MHT file | |
using (var mdFileStream = new MemoryStream(File.ReadAllBytes(documentName))) | |
{ | |
var uploadResult = pdfService.UploadFile(documentName, mdFileStream); | |
} | |
// Retrieve the PDF file | |
var response = pdfService.GetMhtInStorageToPdf(documentName); | |
FileStream fileStream = new FileStream("output.pdf", FileMode.Create, FileAccess.Write); | |
response.CopyTo(fileStream); | |
} | |
} | |
} |
This code has demonstrated the MHT to PDF conversion using C# .NET-based API. The UploadFile() method in the PdfApi class is used to save the source MHT file into the Cloud storage. The API response contains the PDF file that can be used for further processing.
This guide has taught us to convert MHT to PDF. If you want to convert TEX format to PDF, refer to the article on Convert TEX to PDF with C# REST API.