In many cases, while working with a PDF document, you need to change it: copy, paste, drag and drop specific PDF content such as text, images, tables, and diagrams. It’s fine to perform these options manually inside the same PDF file as long as you want to work with small parts of your document. But what if you want to perform the editing options in more complex scenarios such as creating a digital signature, merging multiple PDF documents, or reprocessing all the text in a PDF file?

Aspose.Words answers the question with a fast and accurate tool that allows you to load, edit, and convert PDF to any supported file formats such as DOCX, HTML, Markdown, and others. This article will guide you through the usage of these options both programmatically using C# and online.

Features of Loading a PDF Document using C#

Usually, PDFs are used only for viewing, but sometimes you may need to edit or add something new to the existing PDF document.

Aspose.Words provides additional options to work with PDF documents such as:

  • Convert PDF to multiple formats and extract data.
  • Print PDF documents with a variety of printing options.
  • Encrypt and decrypt PDF as well as modify passwords, and others.

In addition to loading a PDF document, you can create PDF documents programmatically in C# and manage the PDF content such as:

  • Add, update, delete text and images.
  • Insert text and image in headers and footers.
  • Manipulate, export, and import annotations.
  • Add, modify, and remove bookmarks.
  • Add tables, graph objects during PDF generation, and others.

Convert from PDF to the Desired Format using C#

One of the main features of Aspose.Words is the ability to easily and reliably convert documents from one file format to another. In Aspose.Words, converting a PDF document format to another format, such as DOCX, is a very simple process and can be accomplished with few lines of code. You can convert PDF to DOCX programmatically in C# by implementing the following conversion steps:

  1. Load a PDF document.
  2. Save the result to the target file format.
Note: You can apply some additional options when loading or saving a document.

Let’s describe the process of converting a PDF document into a DOCX file format in C# by going through the previous steps with all necessary programming details.

Load a PDF Document

Most tasks that you want to perform with Aspose.Words will require you to load a document as a first step of the conversion process. When you load a PDF document into Aspose.Words, it builds its DOM (Document Object Model), and all document elements and formatting are simply loaded into memory. Use one of the document constructors to either create a blank document or load your PDF document. You can create a blank document with any necessary content or load your document from a stream, as it’s explained in the ‘Creating or Loading a Document’ article.

The following example shows how to load a PDF document from a file in C#:

// Load your PDF document into a Document object using one of its constructors
// and the path to your file.
Document doc = new Document(@"C:\\DocumentName.pdf");

Save a Document in Any Supported Format

Most tasks that you want to perform with Aspose.Words will require you to save a document as a final step. Aspose.Words supports many different save or export formats that are listed in the SaveFormat enumeration. Use one of the Save methods to save the result to a local file, for example, in the DOCX file format.

To achieve that programmatically in C#, invoke the Document.Save method on the Document object and specify the desired output format as DOCX by entering your file name with the “.docx” extension:

// Save your document as a DOCX file.
doc.Save(dataDir + "DocumentName.docx");

Congratulations, you have successfully managed to convert your PDF file to DOCX.

Apply Additional Options

You can apply different PDF save options or PDF load options, and here are a few examples, such as digital signatures, page range, and document open password. Let’s learn more about them.

Add and Verify Digital Signatures

Aspose.Words allows you to sign a PDF document using the DigitalSignatureDetails PDF save option property. You need to upload a digital certificate from disk or from a certificate store and pass it to a new instance of the X509Certificate2 class.

The following code sample shows how to sign a PDF document in C#:

// The path to the documents directory.
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();

// Create a simple document from scratch.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

// Load the certificate from disk.
// The other constructor overloads can be used to load certificates from different locations.
X509Certificate2 cert = new X509Certificate2(dataDir + "signature.pfx", "signature");

// Pass the certificate and details to the save options class to sign with.
PdfSaveOptions options = new PdfSaveOptions();
options.DigitalSignatureDetails = new PdfDigitalSignatureDetails();
dataDir = dataDir + "Document.Signed_out.pdf";

// Save the document as PDF.
doc.Save(dataDir, options);

Set Page Range

To set the page range of loading your PDF document, you will need to use the PageIndex property to specify the index of the start page and the PageCount PDF load option property to set the total number of pages to load starting from the specified index:

var loadOptions = new PdfLoadOptions { PageIndex = 2, PageCount = 4 };  
var doc = new Document("YourDocumentName.pdf", loadOptions);

Open Protected PDF with Password

You can open an encrypted PDF document by specifying the password value directly in the PDF load options:

var loadOptions = new PdfLoadOptions { Password = "123456" };  
var doc = new Document("YourDocumentName.pdf", loadOptions);

PDF Online Converter

If you’re not a programmer, then it’s better to use the online PDF converter. As a first step, all you have to do to convert PDF online is to point your Web browser to the following page on the Aspose Website at the file converter tool.

Let’s guide you through the online conversion process step-by-step:

  1. Drag & drop or select a PDF file to upload by clicking on the button “Drop or Upload your files” as shown in the picture below.
    Upload PDF file
  2. Select DOCX file format from the drop-down list, or choose a different file format.
  3. Click on the button “Convert” to convert your PDF file as shown in the picture below.
    Convert your PDF
  4. Click on the button “DOWNLOAD NOW” to download the conversion result as a DOCX file. Also, you can view the conversion result on Aspose File Viewer by clicking on the button “VIEW RESULTS” as shown in the picture below.
    View results
  5. Congratulations, you have successfully managed to load, convert and save your PDF file to DOCX with our online file converter.

See Also

If you want to achieve the opposite direction and load a Word document to PDF then you can read the following article: Convert Word Document to PDF Programmatically in C# .NET – A Complete Guide.