HTML JPG PDF XML DOCX
  Product Family
PDF

Convert Text to PDF via Cloud .NET SDK

Export Text documents to multiple formats including PDF with Aspose.PDF Cloud .NET SDK

Get Started

How to Convert Text to PDF Using SDK for .NET

In order to convert Textto 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 Text to PDF via .NET SDK

Aspose.PDF Cloud developers can easily load & convert Text files to PDF in just a few lines of code.

  1. Create a new Configuration object with your Application Secret and Key
  2. Create an object to connect to the Cloud API
  3. Upload your document file
  4. Perform the conversion
  5. 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 Text to PDF Cloud .NET SDK Conversion


    public static void ConvertTextToPdf()
    {
        const string localTextFileName = @"C:\Samples\Conversion\sample.txt";
        const string storageTextFileName = "sample.txt";
        const string resultFileName = "sample-txt-to-pdf.pdf";
        
        // Get your AppSid and AppSecret https://dashboard.aspose.cloud (free registration required).
        var pdfApi = new PdfApi(AppSecret, AppSid);

        using var file = File.OpenRead(localTextFileName);
        pdfApi.UploadFile(storageTextFileName, file);
        
        var response = pdfApi.PutMarkdownInStorageToPdf(resultFileName, storageTextFileName);
        Console.WriteLine($"TEXT to PDF result: {response.Status}");
        pdfApi.DownloadFile(resultFileName)
            .CopyTo(File.Create(resultFileName));
    }
 
  •  

    Free App to Convert Text to PDF

    Check our live demos for Text to PDF conversion with following benefits.

      No need to download or setup anything.
      No need to write any code.
      Just upload your Text file and hit the "Convert" button.
      You will instantly receive a link to download the result.

    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.

    Text What is Text File Format

    A file with .TXT extension represents a text document that contains plain text in the form of lines. Paragraphs in a text document are recognized by carriage returns and are used for better arrangement of file contents. A standard text document can be opened in any text editor or word processing application on different operating systems. All the text contained in such a file is in human-readable format and represented by sequence of characters.

    Read More

    PDF What is PDF File Format

    Portable Document Format (PDF) is a type of document created by Adobe back in 1990s. The purpose of this file format was to introduce a standard for representation of documents and other reference material in a format 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. Most of the commercially available software suites also offer conversion of their documents to PDF file format without the requirement of any additional software component. Thus, 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 as part of source document.

    Read More
     

    Other Supported Conversions

    You can also convert many other file formats

    BMP TO PDF (Bitmap Image)
    EMF TO PDF (Enhanced Metafile Format)
    EPUB TO PDF (E-book Format)
    GIF TO PDF (Graphical Interchange Format)
    HTML-TO-PDF (Hyper Text Markup Language)
    JPEG TO PDF (JPEG Image)
    MD TO PDF (Markdown)
    PCL TO PDF (Printer Command Language)
    PDF TO BMP (Bitmap Image)
    PDF TO DOCX (Office 2007+ Words Document)
    PDF TO EMF (Enhanced Metafile Format)
    PDF TO EPUB (E-book Format)
    PDF TO GIF (Graphical Interchange Forma)
    PDF TO HTML (Hyper Text Markup Language)
    PDF TO JPEG (JPEG Image)
    PDF TO PDF/A (Portable Document Format/A)
    PDF TO PNG (Portable Network Graphics)
    PDF TO PPTX (Open XML presentation Format)
    PDF TO SVG (Scalable Vector Graphics)
    PDF TO TEX (LaTeX Output Text)
    PDF TO TIFF (Tagged Image Format)
    PDF TO TXT (Text Document)
    PDF TO XLSX (OOXML Excel File)
    PDF TO XPS (XML Paper Specifications)
    PDF TO PPTX (Open XML presentation Format)
    PNG TO PDF (Portable Network Graphics)
    SVG TO PDF (Scalable Vector Graphics)
    TEX TO PDF (LaTeX Output Text)
    TEXT TO PDF (Text Document)
    TIFF TO PDF (Tagged Image Format)
    XPS TO PDF (XML Paper Specifications)