Spire.XLS 13.1.1

.NET 6.0 .NET Core 2.0 .NET Framework 4.0
There is a newer version of this package available.
See the version list below for details.
dotnet add package Spire.XLS --version 13.1.1
NuGet\Install-Package Spire.XLS -Version 13.1.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Spire.XLS" Version="13.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Spire.XLS --version 13.1.1
#r "nuget: Spire.XLS, 13.1.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Spire.XLS as a Cake Addin
#addin nuget:?package=Spire.XLS&version=13.1.1

// Install Spire.XLS as a Cake Tool
#tool nuget:?package=Spire.XLS&version=13.1.1

.NET API for Processing Excel Documents

Foo

Product Page | Documentation | Examples | Forum | Temporary License | Customized Demo

Spire.XLS for .NET is a professional Excel .NET API that can be used to create, read, write, convert and print Excel files in any type of .NET ( C#, VB.NET, ASP.NET, .NET Core, .NET 5.0, MonoAndroid and Xamarin.iOS) application without installing Microsoft Office.

The API supports both the old Excel 97-2003 format (.xls) and the new Excel 2007, Excel 2010, Excel 2013, Excel 2016 and Excel 2019 (.xlsx, .xlsb, .xlsm), along with Open Office(.ods) format. It features fast and reliably compared with developing your own spreadsheet manipulation solution or using Microsoft Automation.

100% Standalone .NET API

Spire.XLS for .NET is a 100% standalone Excel .NET library without requiring Microsoft Excel or Microsoft Office to be installed on the system.

Freely Operate Excel Files

Powerful & High Quality Excel File Conversion

Examples

Create an Excel File in C#

using Spire.Xls;
using System.IO;
namespace CreateExcelFiles
{
    class Program
    {

        static void Main(string[] args)
        {
            //A: Dynamically create Excel file and save it to stream
            Workbook wbToStream = new Workbook();
            Worksheet sheet = wbToStream.Worksheets[0];
            sheet.Range["C10"].Text = "The sample demonstrates how to save an Excel workbook to stream.";
            FileStream file_stream = new FileStream("To_stream.xls", FileMode.Create);
            wbToStream.SaveToStream(file_stream);
            file_stream.Close();
            System.Diagnostics.Process.Start("To_stream.xls");

            //B. Load Excel file from stream
            Workbook wbFromStream = new Workbook();
            FileStream fileStream = File.OpenRead("sample.xls");
            fileStream.Seek(0, SeekOrigin.Begin);
            wbFromStream.LoadFromStream(fileStream);
            wbFromStream.SaveToFile("From_stream.xls", ExcelVersion.Version97to2003);
            fileStream.Dispose();
            System.Diagnostics.Process.Start("From_stream.xls");
        }

    }
}

Convert Excel to PDF in C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Spire.Xls;

namespace ToPDF
{
    class Program
    {
        static void Main(string[] args)
        {
            Workbook workbook = new Workbook();
            workbook.LoadFromFile("Sample.xlsx", ExcelVersion.Version2010);
            workbook.SaveToFile("result.pdf", Spire.Xls.FileFormat.PDF);
         }
    }
}

Convert Excel to Image in C#

using Spire.Xls;
namespace Xls2Image

{
    class Program
    {
        static void Main(string[] args)
        {
            Workbook workbook = new Workbook();
            workbook.LoadFromFile(@"..\..\test.xls");
            Worksheet sheet = workbook.Worksheets[0];
            sheet.SaveToImage("sample.jpg");
        }
    }
}

Product Page | Documentation | Examples | Forum | Temporary License | Customized Demo

Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Framework net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
Xamarin.iOS xamarinios
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (13)

Showing the top 5 NuGet packages that depend on Spire.XLS:

Package Downloads
KCore_bfagundes

My personal library to work SAP projects.

HBInformationBase

Huabin science and technology basic information database

Balcony.Framework

Balcony's Framework

Nvideo.Infrastructure

Package Description

JecoreDotNetCommon

ebitoo 前端函数库 测试发布 1

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
13.3.2 3,430 3/15/2023
13.2.4 9,446 2/16/2023
13.1.1 8,460 1/17/2023
12.12.3 8,559 12/23/2022
12.11.3 8,334 11/25/2022
12.10.1 14,710 10/20/2022
12.9.2 8,903 9/23/2022
12.8.1 17,230 8/17/2022
12.7.1 17,991 7/13/2022
12.6.1 20,046 6/13/2022
12.5.3 9,220 5/26/2022
12.5.1 8,771 5/13/2022
12.4.1 16,424 4/15/2022
12.3.8 32,053 3/23/2022
12.3.2 8,545 3/4/2022
12.1.0 14,941 1/24/2022
11.12.2 27,233 12/17/2021
11.11.2 21,099 11/25/2021
11.10.5 50,819 10/28/2021
11.10.4 15,443 10/25/2021
11.9.3 15,035 9/16/2021
11.9.2 6,668 9/14/2021
11.8.0 26,205 8/6/2021
11.7.0 17,297 7/8/2021
11.6.1 10,120 6/10/2021
11.4.6 16,240 4/30/2021
11.4.0 18,952 4/7/2021
11.3.4 12,579 3/12/2021
11.2.6 13,229 2/23/2021
11.2.3 4,590 2/8/2021
11.1.0 9,463 1/22/2021
10.12.0 27,920 12/3/2020
10.11.7 7,551 11/18/2020
10.11.2 4,382 11/6/2020
10.10.6 16,977 10/15/2020
10.9.16 6,004 9/28/2020
10.9.0 14,886 9/2/2020
10.8.3 9,943 8/11/2020
10.7.2 29,580 7/8/2020
10.5.7 27,629 5/21/2020
10.4.9 12,597 4/23/2020
10.3.8 8,643 3/26/2020
10.3.0 34,653 3/2/2020
10.2.8 5,837 2/20/2020
10.1.8 22,056 1/21/2020
10.1.1 8,631 1/8/2020
9.12.20 17,988 12/19/2019
9.11.14 11,961 11/26/2019
9.11.2 7,712 11/8/2019
9.10.12 8,148 10/25/2019
9.10.4 7,783 10/11/2019
9.9.13 8,789 9/26/2019
9.9.5 7,928 9/12/2019
9.9.0 6,617 9/2/2019
9.8.11 5,161 8/23/2019
9.8.5 4,702 8/15/2019
9.7.0 10,715 7/11/2019
9.6.12 4,659 7/1/2019
9.6.7 3,426 6/19/2019
9.6.1 3,449 6/6/2019
9.5.11 3,892 5/23/2019
9.5.6 2,260 5/16/2019
9.5.4 3,864 5/13/2019
9.5.0 4,393 5/1/2019
9.4.6 23,860 4/15/2019
9.4.0 8,595 4/2/2019
9.3.10 11,539 3/21/2019
9.3.4 1,654 3/13/2019
9.2.11 19,464 2/27/2019
9.2.8 2,424 2/21/2019
9.1.22 13,785 2/1/2019
9.1.14 3,315 1/24/2019
9.1.0 8,258 1/10/2019
8.12.11 8,631 12/28/2018
8.12.3 4,289 12/11/2018
8.11.6 9,597 11/21/2018
8.11.2 2,871 11/13/2018
8.10.7 4,866 10/31/2018
8.10.2 6,192 10/12/2018
8.9.8 4,253 9/30/2018
8.9.3 3,559 9/18/2018
8.8.5 4,357 8/29/2018
8.8.1 25,441 8/8/2018
8.8.0 2,484 8/1/2018
8.7.2 3,480 7/12/2018
8.6.6 4,189 6/28/2018
8.6.1 2,846 6/21/2018
8.5.1 5,268 5/11/2018
8.0.0 5,429 2/8/2018
7.12.150 4,438 2/6/2018
7.12.144 10,298 1/12/2018
7.12.140 3,317 12/28/2017
7.12.130 2,649 12/14/2017
7.12.125 3,407 12/4/2017
7.12.109 3,030 11/7/2017
7.12.100 2,343 10/23/2017
7.12.90 5,521 9/28/2017
7.12.76 4,619 8/22/2017
7.12.69 2,463 8/11/2017
7.12.55 3,828 7/18/2017
7.12.43 1,676 7/3/2017
7.12.27 5,915 6/9/2017
7.12.19 3,832 5/26/2017
7.12.11 3,989 5/9/2017
7.12.7 2,310 5/4/2017
7.12.0 10,949 4/24/2017
7.11.59 7,855 2/28/2017
7.11.49 5,649 1/24/2017