Aspose PDF License Question (filetypes to PDFs)

Hello there.

General question about licenses. We currently use Aspose libraries to convert Images/Word/Html files into PDF. As we only output these files to PDFs can we just use an Apose.PDF license instead of an Aspose.Total license?

Example code

Word document

        var mStream = new MemoryStream();
        var tempDoc = new Aspose.Words.Document(sourceFile);
        tempDoc.Save(mStream, Aspose.Words.SaveFormat.Pdf);
        var pdfDocument = CreatePdfDocument(options, mStream);
        pdfDocument.Pages.Add(new Aspose.Pdf.Document(mStream).Pages);
        pdfDocument.OptimizeResources(DefaultOptimizeOptions());
        return pdfDocument;

Regards

@verodev001

You can use Aspose.PDF for .NET to convert HTML and images to PDF. However, to convert Word documents to PDF, you need to use Aspose.Words for .NET. Please read the following articles for more detail.

Supported File Formats by Aspose.PDF
Supported Document Formats by Aspose.Words