Click here to Skip to main content
15,885,951 members
Please Sign up or sign in to vote.
1.50/5 (3 votes)
See more:
Hi friends,
Can anyone suggest a quick solution that let us to convert Excel to PDF within our .NET project as soon as possible. Note that Excel is a report which contains data as well as images. We tried to find help from Adobe SDK but failed. Please help.
Thanks in advanced.
Best Regards
Gerxy
Posted
Comments
Trighom 4-Sep-15 5:20am    
Here is quick solution for converting excel file into a pdf in .net.
All it requires is to add a reference to this excel library for .net and use it like this:
ExcelFile.Load("Book1.xlsx", LoadOptions.XlsxDefault)
.Save("Book1.pdf",
new PdfSaveOptions() { SelectionType = SelectionType.EntireFile });

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900