Download Excel from URL and convert it into PDF

Dear Support Team,

We are putting together a proposal for new customer. The requirement is to be able to download Excel document from a URL and convert it into PDF. Please can you share any code related to download and therefore convert?

Thanks

Hi Umer,


Thank you for considering Aspose APIs.

I am afraid, Aspose.Cells for .NET API does not provide any means to download the file from any remote location. However, if you can tackle this part of your requirement then you can use the following code snippet to convert the downloaded file/stream to PDF format.

C#

Aspose.Cells.Workbook book = new Aspose.Cells.Workbook(inStream);
book.Save(outStream, SaveFormat.Pdf);

Please feel free to write back in case you have further questions.