HTML is a HyperText Markup Language file format used as the basis of a web page. It’s also one of the widely used formats for information sharing across the internet. However, if some custom fonts are used inside the HTML file, there can be formatting issues when viewing the files. So, one of the viable solutions is to convert the HTML files to PDF format as we can compress unlimited information into a file size that is easy to share or receive without compromising on the quality. In this article, we are going to discuss the steps to convert HTML to PDF using Cloud API.
Aspose.HTML Cloud is a lightweight Cloud REST API providing the capabilities to implement HTML processing and conversion features within desktop, web & cloud-based applications. It enables us to convert HTML to fixed layout document formats such as PDF, XPS, or raster images (JPEG, PNG, BMP, or TIFF). So in order to implement the Web to PDF conversion routine in the .NET application, we are going to use Aspose.HTML Cloud SDK for .NET.
The SDK can be downloaded either from NuGet or GitHub and in order to install the SDK through NuGet, please execute the following command in a terminal window:
nuget install Aspose.HTML-Cloud
nuget install Aspose.HTML-Cloud
nuget install Aspose.HTML-Cloud
We can also install the package through the NuGet package manager by executing the following command:
PM> Install-Package Aspose.HTML-Cloud
PM> Install-Package Aspose.HTML-Cloud
PM> Install-Package Aspose.HTML-Cloud
Another easiest approach is to install the SDK via NuGet Package Manager within Visual Studio IDE.
Open the Solution Explorer.
Expand the project and Right-click the Packages folder within your solution.
Select Manage NuGet Packages…option
Click on the Browse tab and search for “Aspose.HTML-Cloud“.
Click on the Aspose.HTML-Cloud package, select the appropriate version in the right tab and click Add Packagebutton
Image 1:- HTML to PDF Conversion API in NuGet Package Manager.
The next major step is a free subscription to our cloud services via Aspose.Cloud dashboard using GitHub or Google account. Or, simply create a new Account and obtain your Client Credentials details.
HTML to PDF in C#
This section explains the conversion of Webpage to PDF. The input HTML is already stored in Cloud storage and after the conversion, the resultant file is also stored in cloud storage.
First of all, please create an HtmlApi instance while passing ClientID and ClientSecret details as arguments
Secondly, read the HTML file using File.OpenRead(..) method
Thirdly, create an instance of StorageApi and use UploadFile(…) method to upload HTML to Cloud storage
Then create PutConvertDocumentToPdf(…)method to perform HTML to PDF conversion and save the output to Cloud storage
This file contains 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
Aspose.HTML Cloud is developed on REST architecture, so it can also be accessed via cURL commands. Please follow the steps given below to perform the HTML to PDF conversion.
Get your Client Id and Client Secret from the Cloud dashboard
Get JSON Web Access Token based on client credentials
Now that the HTML file is uploaded to Cloud storage, please execute the following command to perform the conversion of HTML to PDF format, and the resultant file is stored in Cloud storage.
curl -X PUT "https://api.aspose.cloud/html/inputHTML.html/convert/pdf?outPath=Converted.pdf&width=800&height=1000&leftMargin=10&rightMargin=10&topMargin=10&bottomMargin=10" \
In this article, we have discussed an amazing feature of converting HTML to PDF using the C# .NET code snippet as well as through the cURL command. So with fewer code lines, we have managed to convert the HTML to PDF online. Please note that Aspose.HTML Cloud is developed under an MIT license, so the complete code snippet can be downloaded from GitHub.
If you encounter any issues while using the API, please feel free to contact us via the Free Product support forum.
Related articles
We recommend visiting the following links to learn more about