FreeSpire.Doc 12.2.0

dotnet add package FreeSpire.Doc --version 12.2.0
NuGet\Install-Package FreeSpire.Doc -Version 12.2.0
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="FreeSpire.Doc" Version="12.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FreeSpire.Doc --version 12.2.0
#r "nuget: FreeSpire.Doc, 12.2.0"
#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 FreeSpire.Doc as a Cake Addin
#addin nuget:?package=FreeSpire.Doc&version=12.2.0

// Install FreeSpire.Doc as a Cake Tool
#tool nuget:?package=FreeSpire.Doc&version=12.2.0

Free .NET Library to Create, Manipulate & Convert Word Documents

Foo

Product Page | Documentation | Examples | Forum | Customized Demo

Free Spire.Doc for .NET is a Community Edition of the Spire.Doc for .NET, which is a totally free Word API for commercial and personal use.

Using Free Spire.Doc for .NET, developers can create, read, manipulate, convert and print Word documents in .NET (C#, VB.NET, ASP.NET, .NET Core, .NET Standard and Xamarin) applications without installing Microsoft Office.

Friendly Reminder: Free version is limited to 500 paragraphs and 25 tables. This limitation is enforced during reading or writing files. When converting word documents to PDF and XPS files, you can only get the first 3 page of PDF file.

Standalone .NET API

Free Spire.Doc for .NET is a totally independent API, it doesn't require Microsoft Office or any other third-party libraries to be installed on system.

Support Both Old and New Word Versions

  • Word 97-2003
  • Word 2007
  • Word 2010
  • Word 2013
  • Word 2016
  • Word 2019

Support a Rich Set of Word Elements

Free Spire.Doc for .NET supports almost all Word document elements, including sections, headers, footers, footnotes, endnotes, paragraphs, lists, tables, text, fields, hyperlinks, bookmarks, watermarks, math equations, mail merge, comments, images, styles, background settings, digital signature, document printing, document settings, document encryption and decryption. Furthermore, drawing objects including shapes, textboxes, images, OLE objects and content controls are supported as well.

High Quality File Conversions

Using Free Spire.Doc for .NET, developers can:

Examples

Create a Word Document in C#

//Create a Document instance
Document doc = new Document();
//Add a section
Section section = doc.AddSection();
//Add a paragraph
Paragraph para = section.AddParagraph();
//Append text to the paragraph
para.AppendText("Hello World");
//Save the result document
doc.SaveToFile(@"C:\Users\Administrator\Desktop\Output.docx", FileFormat.Docx2013);

Convert Word to PDF, HTML and XPS in C#

//Create a Document instance
Document document = new Document();
//Load a sample document
document.LoadFromFile(@"C:\Users\Administrator\Desktop\Template.docx");
           
//Save to PDF
document.SaveToFile("Sample.pdf", FileFormat.PDF);
//Save to HTML
document.SaveToFile("toHTML.html", FileFormat.Html);
//Save to XPS
document.SaveToFile("Sample.xps", FileFormat.XPS);

Convert Word to Image in C#

//Create a Document instance
Document document = new Document();
//Load a sample document
document.LoadFromFile(@"C:\Users\Administrator\Desktop\Template.docx");

//Save to PNG image
Image[] images = document.SaveToImages(Spire.Doc.Documents.ImageType.Bitmap);
for (int i = 0; i < images.Length; i++)
{
    Image img = images[i];
    String fileName = String.Format("img-{0}.png", i);
    img.Save(fileName, System.Drawing.Imaging.ImageFormat.Png);
    img.Dispose();
}

Product Page | Documentation | Examples | Forum | Customized Demo

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 is compatible.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (19)

Showing the top 5 NuGet packages that depend on FreeSpire.Doc:

Package Downloads
EY.Classlib.Common

Package Description

webenology.blazor.components

Blazor Components used at webenology

PdfConverter

A library for converting images and word documents to PDF documents.

Our.Umbraco.Dexter.IndexStrategies

Web site

Aaron.SDK.LvDD

LvDD Electronic Contract

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on FreeSpire.Doc:

Repository Stars
tianlian0/paper_checking_system
基于C#和C++开发的文本查重/论文查重系统,一亿字次级论文库秒级查重。关联:查重算法、数据去重、文档查重、文本去重、标书查重、辅助防串标、作业查重、duplicate check
Version Downloads Last updated
12.2.0 6,913 2/29/2024
11.6.0 104,271 6/16/2023
10.8.1 70,328 4/10/2023
10.8.0 209,834 8/17/2022
10.7.0 43,711 7/19/2022
10.2.0 263,902 2/11/2022
9.9.7 191,645 9/18/2021
7.11.0 739,111 11/5/2019
7.1.13 173,152 1/25/2019
6.3.0 80,332 5/4/2018
5.7.0 117,515 9/7/2016

Thank you for your interests in Spire.Doc. Free Spire.Doc is a professional and powerful Word component which enables you to generate, load, write, edit and save Word document on .NET and WPF. With Spire.Doc, you can create a large range of applications. Now it supports to work on .NET Core. .NET Standard 2.0, Azure function