Convert JPEG to PDF via Cloud .NET SDK
Export JPEG documents to multiple formats including PDF with Aspose.PDF Cloud .NET SDK
Get StartedHow to Convert JPEG to PDF Using SDK for .NET
In order to convert JPEG to PDF, we’ll use Aspose.PDF Cloud .NET SDK This Cloud SDK allows you to easily build cloud-based PDF creator, editor & converter apps in C#, ASP.NET, or other .NET languages for various cloud platforms. Open NuGet package manager, search for Aspose.PDF Cloud and install. You may also use the following command from the Package Manager Console.
Package Manager Console Command
PM> Install-Package Aspose.Pdf-Cloud
Steps to Convert JPEG to PDF via .NET SDK
Aspose.PDF Cloud developers can easily load & convert JPEG files to PDF in just a few lines of code.
- Create a new Configuration object with your Application Secret and Key
- Create an object to connect to the Cloud API
- Upload your document file
- Perform the conversion
- Download the result
System Requirements
It is easy to get started with Aspose.PDF Cloud .NET SDK and there is nothing to install. Simply create an account at Aspose for Cloud and get your application information. Once you have the App SID & key, you are ready to give the Aspose.PDF Cloud .NET SDK.
- .NET Framework 2.0 or later
- JSON.NET
This sample code shows JPEG to PDF Cloud .NET SDK Conversion
public static void ConvertJPEGtoPDF()
{
var localImageFileName = @"C:\Samples\Conversion\sample.jpg";
var storageImageFileName = "sample.jpg";
// Get your ClientId and ClientSecret from https://dashboard.aspose.cloud (free registration required).
var config = new Configuration(AppSecret, AppKey);
var pdfApi = new PdfApi(config);
using (var file = File.OpenRead(localImageFileName))
{
var uploadResult = pdfApi.UploadFile(storageImageFileName, file);
}
var imageTemplatesRequest = new ImageTemplatesRequest(IsOCR: false,
ImagesList: new List<ImageTemplate>()
{
new ImageTemplate(ImagePath: storageImageFileName, ImageSrcType: ImageSrcType.Common)
}
);
var response = pdfApi.PutImageInStorageToPdf("sample-jpeg-to-pdf.pdf", imageTemplatesRequest);
Console.WriteLine($"JPEG to PDF result: {response.Status}");
}
Free App to Convert JPEG to PDF
Check our live demos for JPEG to PDF conversion with following benefits.
A PDF Processing Library to create cross-platform applications with the ability to generate, modify, convert, render, secure and print documents without using Adobe Acrobat. .NET PDF API offers compression, table creation, graph & image functions, hyperlinks, stamp and watermarking tasks, extended security controls & custom font handling.
JPEG What is JPEG File Format
A JPEG is a type of image format that is saved using the method of lossy compression. The output image, as result of compression, is a trade-off between storage size and image quality. Users can adjust the compression level to achieve the desired quality level while at the same time reduce the storage size. Image quality is negligibly affected if 10:1 compression is applied to the image. The higher the compression value, the higher the degradation in image quality.
Read MorePDF What is PDF File Format
Portable Document Format (PDF) is a type of document created by Adobe back in the 1990s. A PDF file is a multi-platform document created by Adobe Acrobat or another PDF application. The PDF format is commonly used to save documents and publications in a standard format that can be viewed on multiple platforms, that is independent of application software, hardware as well as Operating System. PDF files can be opened in Adobe Acrobat Reader/Writer as well in most modern browsers like Chrome, Safari, Firefox via extensions/plug-ins. PDF file format has full capability to contain information like text, images, hyperlinks, form-fields, rich media, digital signatures, attachments, metadata, Geospatial features, and 3D objects in it that can become part of the source document.
Read MoreOther Supported Conversions
You can also convert JPEG into many other file formats including few listed below.