Excel to PDF .Net is a standalone C# library to convert Excel spreadsheets and workbooks to PDF.
No Microsoft Excel automation
Fast and Intependent Excel to PDF solution
Developed in 100% managed C# code
Allows to export XLS spreadsheets to PDF in memory
Easy to integrate in any .Net 1.1, 2.0, 3.0, 3.5 and 4.0 Web and WinForms application
The component converts Excel XLS to PDF in many times faster than MS Office automation.
To add ability of generation PDF from Excel in any .Net application you will need only two lines of code.
Sample #1, C# - Converting Excel file into PDF file:
//Convert Excel file to PDF file
SautinSoft.ExcelToPdf x = new SautinSoft.ExcelToPdf();
//Set PDF format for output document
x.OutputFormat = SautinSoft.ExcelToPdf.eOutputFormat.Pdf;
string excelPath = @"..\..\..\..\..\test.xls";
string pdfPath = @"..\..\..\..\..\test.pdf";
x.ConvertFile(excelPath, pdfPath);
Sample #2, C# - Converting Excel workbook to PDF in memory:
//Convert Excel file to PDF byte stream
SautinSoft.ExcelToPdf x = new SautinSoft.ExcelToPdf();
string excelPath = @"..\..\..\..\..\test.xls";
byte[] pdf = null;
x.ConvertFiletoBytes(excelPath, ref pdf);
The component works in ASP.Net, even at servers with shared-hosting and medium trust level.
//Save PDF data to file and show PDF
if (pdf != null)
{
string pdfPath = @"..\..\..\..\..\test.pdf";
WriteToFile(pdfPath, pdf);
System.Diagnostics.Process.Start(pdfPath);
}
excelvb.netPDFMS Excelc# .NETxls to pdfexcel to pdf
We've released new version 2.8.1.12 of the Excel to PDF .Net!
What's new:
Added new property PrintArea. It allows to specify custom sheets and cells which will be exported into PDF and Word.
For example, we have Excel spreadsheet as shown on picture and we want to export into PDF only area (B20, D25):
This is a C# sample:
SautinSoft.XlsToPdf x = new SautinSoft.XlsToPdf(); x.OutputFormat = SautinSoft.XlsToPdf.eOutputFormat.Pdf; int[] arJ = { 1 }; x.Sheets.PrintArea.Custom(arJ, "B20", "D25");
After launching this code we've got PDF result (sheet 1, B20 - D25):
Fixed issue with compatibility PDF documents and Adobe Reader 6.0 or lower
Fixed minor issues with reading Excel documents
If anyone have questions, suggesions regarding this tool email me at support@sautinsoft.com
SautinSoft
Member
194 Points
103 Posts
Released new library - XLS, XLXS to PDF, Word in C# and VB.Net
Nov 09, 2009 06:00 AM|LINK
Hi All!
SautinSoft announces about releasing of new product: Excel to PDF .Net!
Excel to PDF .Net is a standalone C# library to convert Excel spreadsheets and workbooks to PDF.
The component converts Excel XLS to PDF in many times faster than MS Office automation.
To add ability of generation PDF from Excel in any .Net application you will need only two lines of code.
Sample #1, C# - Converting Excel file into PDF file:
//Convert Excel file to PDF file SautinSoft.ExcelToPdf x = new SautinSoft.ExcelToPdf(); //Set PDF format for output document x.OutputFormat = SautinSoft.ExcelToPdf.eOutputFormat.Pdf; string excelPath = @"..\..\..\..\..\test.xls"; string pdfPath = @"..\..\..\..\..\test.pdf"; x.ConvertFile(excelPath, pdfPath);Sample #2, C# - Converting Excel workbook to PDF in memory:
//Convert Excel file to PDF byte stream SautinSoft.ExcelToPdf x = new SautinSoft.ExcelToPdf(); string excelPath = @"..\..\..\..\..\test.xls"; byte[] pdf = null; x.ConvertFiletoBytes(excelPath, ref pdf);The component works in ASP.Net, even at servers with shared-hosting and medium trust level.
Web-page:
http://www.sautinsoft.com/convert-excel-xls-to-pdf/spreadsheet-xls-excel-to-pdf-export-component-asp.net.php
Download free trial:
http://www.sautinsoft.com/components/exceltopdf_net.zip
Max
//Convert Excel file to PDF byte stream
SautinSoft.ExcelToPdf x = new SautinSoft.ExcelToPdf();
string excelPath = @"..\..\..\..\..\test.xls";
byte[] pdf = null;
x.ConvertFiletoBytes(excelPath, ref pdf);
//Save PDF data to file and show PDF
if (pdf != null)
{
string pdfPath = @"..\..\..\..\..\test.pdf";
WriteToFile(pdfPath, pdf);
System.Diagnostics.Process.Start(pdfPath);
}
excel vb.net PDF MS Excel c# .NET xls to pdf excel to pdf
SautinSoft
Member
194 Points
103 Posts
Re: Released new library - XLS, XLXS to PDF, Word in C# and VB.Net
Apr 26, 2010 07:56 AM|LINK
We inform about releasing a new version 2.1.4.21 of the Excel to PDF .Net!
These functions can be added into any .Net application with help of the component:
Developers can adjust the component to:
Where the component does work:
What's new in the version 2.1.4.21:
Max
SautinSoft
Member
194 Points
103 Posts
Re: Released new library - XLS, XLXS to PDF, Word in C# and VB.Net
Jun 29, 2010 12:44 PM|LINK
We've released the new version 2.6.6.10.
Download evaluation version: http://www.sautinsoft.com/components/exceltopdf_net.zip (1.5 Mb)
What's new:
Online-demo: http://www.sautinsoft.net/excel-xls-to-pdf-csharp-convert-online-net.aspx
xls to pdf excel to pdf
SautinSoft
Member
194 Points
103 Posts
Re: Released new library - XLS, XLXS to PDF, Word in C# and VB.Net
Nov 02, 2010 06:21 AM|LINK
2.7.11.1 - November 1st, 2010.
Product page: http://www.sautinsoft.com/convert-excel-xls-to-pdf/spreadsheet-xls-excel-to-pdf-export-component-asp.net.php
Download evaluation version: http://www.sautinsoft.com/components/exceltopdf_net.zip
Online demo: http://www.sautinsoft.net/excel-xls-to-pdf-csharp-convert-online-net.aspx
We've released new version of the component and main feature is export XLS to Word, PDF with full Unicode support. See details:
This is a sample Excel document with Cyrillic characters:
This is the same document after export to Word (RTF) format:
This is the same document after export to PDF format:
What else changed in new version:
Cheers,
Max
xls to pdf excel to pdf
SautinSoft
Member
194 Points
103 Posts
Re: Released new library - XLS, XLXS to PDF, Word in C# and VB.Net
Jan 28, 2011 11:31 AM|LINK
We've released new version 2.8.1.12 of the Excel to PDF .Net!
What's new:
For example, we have Excel spreadsheet as shown on picture and we want to export into PDF only area (B20, D25):
This is a C# sample:
After launching this code we've got PDF result (sheet 1, B20 - D25):
If anyone have questions, suggesions regarding this tool email me at support@sautinsoft.com
Max
vb.net excel to pdf c#
SautinSoft
Member
194 Points
103 Posts
Re: Released new library - XLS, XLXS to PDF, Word in C# and VB.Net
Sep 07, 2011 01:00 PM|LINK
Hi Community!
We are happy to release new major version Excel to PDF .Net 3.0!!! What's new:
Excel to PDF .Net homepage: http://www.sautinsoft.com/convert-excel-xls-to-pdf/spreadsheet-xls-excel-to-pdf-export-component-asp.net.php
You are welcome with your questions at our online Chat Support! (at right-bottom corner on main page)
Max
excel to pdf c#
SautinSoft
Member
194 Points
103 Posts
Re: Released new library - XLS, XLXS to PDF, Word in C# and VB.Net
Aug 27, 2012 10:48 AM|LINK
Hi Community!
We are happy to release about new version of the .net component to convert Excel spreadsheets into PDF documents - Excel to PDF .Net 3.2.8.
What's new:
Best wishes,
Max