If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Aspose.HTML Cloud SDK for Android to Process HTML Files
You can easily use aspose-html-cloud-android for Java directly from a
Maven based project by adding following configurations to the pom.xml.
Product Page | Documentation | Demos | Swagger UI | Examples | Blog | Search | Free Support | Free Trial
Aspose.HTML Cloud SDK for Android makes it easy to implement HTML manipulation and modification features in your Android applications. Cloud SDK для Android enables conversion of HTML files into multiple formats, including fixed-layout documents (PDF, XPS, DOCX), raster images (JPEG, PNG, TIFF, BMP, GIF), and web-related formats (MD, MHTML). It also supports image vectorization, allowing you to transform raster files (JPEG, PNG, TIFF, BMP, GIF) into scalable SVG graphics.
Aspose.HTML Cloud SDK for Android provides powerful conversion features that let you transform web content and documents into a wide variety of formats. You can work with local files, URLs, or cloud-stored content and fine-tune the output using custom options such as page size, orientation, margins, and image resolution.
- HTML & XHTML – Convert HTML to PDF, XPS, DOCX, images (JPEG, PNG, TIFF, BMP, GIF), as well as Markdown and MHTML.
- MHTML – Convert MHTML to PDF, DOCX, and images, including JPEG, PNG, TIFF, BMP, GIF.
- EPUB – Convert EPUB to PDF, DOCX, JPEG, PNG, TIFF, BMP, and GIF.
- Markdown – Convert Markdown to professional PDF and DOCX documents, to HTML, JPEG, PNG, TIFF, BMP, and GIF.
- SVG – Convert vector graphics into PDF, XPS, or raster image formats like PNG, JPEG, and TIFF.
- Process input from local files, URLs, or cloud storage.
- Convert raster formats (JPEG, PNG, TIFF, BMP, GIF) into scalable vector graphics – SVG.
- Enhance image quality by transforming low-resolution bitmaps into clean, resolution-independent vectors.
- Fine-tune output with customizable vectorization settings such as error threshold, color limits, iterations, and line width.
- Process input from local files, URLs, or cloud storage.
HTML, XHTML, zipped HTML, zipped XHTML, MHTML, HTML containing SVG markup, Markdown, SVG
Save HTML As
Microsoft Word: DOCX
Fixed Layout: PDF, XPS
Images: JPEG, PNG, BMP, TIFF, GIF
Web Formats MHTML, Markdown
eBook: EPUB
Convert HTML to PDF Using Aspose.HTML Cloud SDK for Android
This example shows how to use the Aspose.HTML Cloud SDK for Android to convert HTML to PDF. The code configures the API endpoints, authenticates with the client credentials, creates a conversion job, and saves the output locally.
// Configure Aspose Cloud API base and authentication endpoints
Configuration.setBasePath("https://api.aspose.cloud");
Configuration.setAuthPath("https://api.aspose.cloud/connect/token");
// Initialize the HTML API client with client credentials
HtmlApi api = new HtmlApi("CLIENT_ID", "CLIENT_SECRET");
// Build a conversion job: input HTML file → output PDF
JobBuilder builder = new ConverterBuilder()
.fromLocalFile("input.html") // Source HTML file
.saveToLocal("output.pdf"); // Destination file
// Execute the conversion operation
OperationResult result = api.convert(builder);
Product Page | Documentation | Demos | Swagger UI | Examples | Blog | Search | Free Support | Free Trial