Inserting a PDF to Word Document

This is the situation:

I am to append a PDF’s content to a document. I searched the API but found no references to solve my problem.

Is this possible? If its possible, can you point me how to do it, sample codes will help a lot.

Hi Oliver,

Thanks for your inquiry. I see two ways to achieve what you need.

  1. Convert PDF document into sequence of images and insert these images into the word document. You can use Aspose.Pdf.Kit to convert PDF document into Images.
    https://docs.aspose.com/pdf/net/convert-pdf-to-images-format/
    You can use Aspose.Words.DocumentBuidler to insert images into the document:
    https://docs.aspose.com/words/net/working-with-images/
  2. (This option available only in .NET)Another option is converting PDF document to Word document and append this document to the existing document. You can use Aspose.Recognition to convert PDF document into Word document:
    https://docs.aspose.com/words/net/convert-pdf-to-other-document-formats/
    Then use Aspose.Words to append this document to the existing document:
    https://docs.aspose.com/words/net/convert-pdf-to-other-document-formats/

Hope this helps.
Best regards.

A post was split to a new topic: Insert PDF to Word Document