Small inquiry about Aspose

Hello Sir,

I am new to Aspose API.

I am thinking to use Aspose if it can convert all the required documents to PDF.

I am getting confused whether we could convert the visio file to PDF file or not?

i look forward hearing from you soon.

Kishoj

Hi

Thanks for your inquiry. Aspose.Words does not allow converting Visio files to PDF. Please see the following link to learn which file formats are supported by Aspose.Words:
https://docs.aspose.com/total/net/

Please let me know if you need more information, I will be glad to help you.

Best regards.

Can we define our custom header/footers after converting files to PDF???

Hi

Thanks for your request. There is no way to define custom header/footer after converting to PDF using Aspose.Words. But I think you can try creating a header/footer before converting to PDF. Please see the following link to learn more about creating headers and footers in Aspose.Words:
https://docs.aspose.com/total/net/
Hope this helps.

Best regards,

Thanks AndreyN for your reply & link!!!

Can we convert only selected page of a document and convert to PDF???

Hi

Thanks for your request. Using Aspose.Words you can save a range of document pages into a PDF file. It can be one page. Please see the following link for more detail:

https://reference.aspose.com/words/net/aspose.words.saving/pdfsaveoptions/

Best regards,

This URI is good one. It solved the problem of converting particular page of doc/docx to PDF. But I am wondering whether it is possible to convert the the selected page of the file such as ppt, multiple page tif file, etc to PDF ???

Hi

Thanks for your inquiry. Aspose.Words does not work with MS PowerPoint documents; it works only with MS Word documents. So please ask your question in the Aspose.Slides forum:
https://forum.aspose.com/c/slides/11

Also, please see the following link to learn more about file formats supported by Aspose.Words:
https://docs.aspose.com/words/net/

Best regards,

Hi Kishoj,

Thanks for considering Aspose.

You can convert a multipage .tiff file using Aspose.Words for .NET by inserting each page of the image file into a new page in a document and then saving this document to .PDF.

As for saving PPT content to .PDF this can be done by Aspose.Slides as Andrey said. Please post any queries regarding this format in that forum.

Thanks,

Hi

Also, please see the following link as example:
https://docs.aspose.com/words/net/convert-a-document-to-pdf/

Best regards,

Thanks to Adam Skelton & Andrey Noskov!!! I am able to convert the selected pages of PPT to PDF!!!

Is there any way to convert the doc/docx file to image and then that image is added to the PDF section through function AddParagraph(image) as it is possible in ppt where each slide of ppt is converted into image and then that image is added to the PDF???

Hi Kishoj,

Yes this is possible and easy to do using Aspose.Words. This can be achieved usings a few lines of code and the method found in the documentation that Andrey posted above. Please see the implementation below.

Document doc = new Document("Input document.doc");
doc.SaveToImage(0, doc.PageCount, "Doc Temp.tiff", null);
ConvertImageToPdf("Doc Temp.tiff", "Document out.pdf");

Thanks,

Thank you to all who have helped me!!!