iTextSharp.LGPLv2.Core 3.7.4

dotnet add package iTextSharp.LGPLv2.Core --version 3.7.4
                    
NuGet\Install-Package iTextSharp.LGPLv2.Core -Version 3.7.4
                    
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="iTextSharp.LGPLv2.Core" Version="3.7.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="iTextSharp.LGPLv2.Core" Version="3.7.4" />
                    
Directory.Packages.props
<PackageReference Include="iTextSharp.LGPLv2.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add iTextSharp.LGPLv2.Core --version 3.7.4
                    
#r "nuget: iTextSharp.LGPLv2.Core, 3.7.4"
                    
#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.
#addin nuget:?package=iTextSharp.LGPLv2.Core&version=3.7.4
                    
Install as a Cake Addin
#tool nuget:?package=iTextSharp.LGPLv2.Core&version=3.7.4
                    
Install as a Cake Tool

iTextSharp.LGPLv2.Core

iTextSharp.LGPLv2.Core

iTextSharp.LGPLv2.Core is an unofficial port of the last LGPL version of the iTextSharp (V4.1.6) to .NET Core.

Install via NuGet

To install iTextSharp.LGPLv2.Core, run the following command in the Package Manager Console:

Nuget

PM> Install-Package iTextSharp.LGPLv2.Core

You can also view the package page on NuGet.

Linux (and containers) support

The SkiaSharp library needs extra dependencies to work on Linux and containers. Please install the following NuGet packages:

PM> Install-Package SkiaSharp.NativeAssets.Linux.NoDependencies
PM> Install-Package HarfBuzzSharp.NativeAssets.Linux

You also need to modify your .csproj file to include some MSBuild directives that ensure the required files are in a good place. These extra steps are normally not required but seems to be some issues on how .NET loads them.

<Target Name="CopyFilesAfterPublish" AfterTargets="AfterPublish">
    <Copy SourceFiles="$(TargetDir)runtimes/linux-x64/native/libSkiaSharp.so" DestinationFolder="$([System.IO.Path]::GetFullPath('$(PublishDir)'))/bin/" />
    <Copy SourceFiles="$(TargetDir)runtimes/linux-x64/native/libHarfBuzzSharp.so" DestinationFolder="$([System.IO.Path]::GetFullPath('$(PublishDir)'))/bin/" />    
</Target>

Usage

Functional Tests

FAQ

The pdf is created, but when I try to view it, it says that the document is in use by another process.

You should dispose the FileStream/MemoryStream explicitly. It won't be closed and disposed automatically at the end.

I can't find what would be the equivalent of the PdfTextExtractor class.

PdfTextExtractor exists in v5.0.2+ with AGPL license (Current project is based on the iTextSharp 4.x, not 5.x).

It can't display Unicode characters.

You can find more samples about how to define and use Unicode fonts here.

Table rowspans don't work correctly.

This version which is based on iTextSharp V4.1.6 doesn't support rowspans correctly (iTextSharp supports row spans correctly since v5.4.3, not before that). A solution based on the current version: use nested tables to simulate it.

iTextSharp.text.html.simpleparser.HTMLWorker does not exist.

It has been renamed to HtmlWorker.

Licensing

You have three license choices when it comes to iTextSharp: LGPL/MPL, AGPL, or a commercial license. The LGPL/MPL license is only an option with the older 4.1.6 version (used here). After that version, they switched to a dual AGPL/Commercial.

If you need a more recent version, you either have to make your project open-source or pay the license fee.

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 is compatible.  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 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  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 (76)

Showing the top 5 NuGet packages that depend on iTextSharp.LGPLv2.Core:

Package Downloads
PdfRpt.Core

PdfReport.Core is a code first reporting engine, which is built on top of the iTextSharp.LGPLv2.Core and EPPlus.Core libraries.

DYKJ.Framework

DYKJ.Framework

BlueBox.Core

Core Framework

Messaia.Net.iTextExtensions

iTextSharp Extensions

DNTCommon.Web.Core

DNTCommon.Web.Core provides common scenarios' solutions for ASP.NET Core applications.

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on iTextSharp.LGPLv2.Core:

Repository Stars
VahidN/PdfReport.Core
PdfReport.Core is a code first reporting engine, which is built on top of the iTextSharp.LGPLv2.Core and EPPlus.Core libraries
majorsilence/My-FyiReporting
Majorsilence Reporting, .NET report designer, viewer, and pdf creation. Fork of fyireporting,
Serg-Norseman/GEDKeeper
GEDKeeper - program for work with personal genealogical database
Version Downloads Last Updated
3.7.4 22,431 5/23/2025
3.7.3 2,951 5/21/2025
3.7.2 31,977 4/22/2025
3.7.1 108,548 2/20/2025
3.7.0 47,513 1/28/2025
3.6.0 73,132 1/11/2025
3.5.1 20,948 1/1/2025
3.5.0 5,459 12/28/2024
3.4.26 7,584 12/27/2024
3.4.25 59,516 12/6/2024
3.4.24 7,299 12/2/2024
3.4.23 42,698 11/24/2024
3.4.22 231,800 9/25/2024
3.4.21 211,370 7/24/2024
3.4.20 298,004 5/16/2024
3.4.19 74,872 4/27/2024
3.4.18 279,086 2/26/2024
3.4.17 62,325 2/13/2024
3.4.16 1,153 2/13/2024
3.4.15 276,659 12/15/2023
3.4.14 30,118 12/7/2023
3.4.13 42,372 11/27/2023
3.4.12 158,882 10/20/2023
3.4.11 40,525 10/9/2023
3.4.10 3,814 10/6/2023
3.4.9 75,631 10/2/2023
3.4.8 55,732 9/27/2023
3.4.7 10,319 9/21/2023
3.4.6 13,372 9/17/2023
3.4.5 44,154 9/1/2023
3.4.4 4,444 8/30/2023
3.4.3 260,808 6/3/2023
3.4.2 45,813 5/13/2023
3.4.1 2,114 5/12/2023
3.4.0 6,971 5/11/2023
3.3.5 65,500 4/19/2023
3.3.4 24,798 4/12/2023
3.3.3 74,764 3/17/2023
3.3.2 188,170 2/5/2023
3.3.1 12,382 2/2/2023
3.3.0 18,114 2/1/2023
3.2.1 27,612 1/24/2023
3.2.0 8,629 1/22/2023
3.1.1 3,289 1/22/2023
3.1.0 34,555 1/6/2023
3.0.0 17,602 1/3/2023
2.0.1 55,965 12/25/2022
2.0.0 78,845 12/18/2022
1.9.4 136,490 12/7/2022
1.9.3 190,932 11/17/2022
1.9.2 424,022 9/20/2022
1.9.1 6,983 9/16/2022
1.9.0 29,512 9/15/2022
1.8.0 757,875 5/10/2022
1.7.5 1,585,173 10/5/2021
1.7.4 82,252 9/18/2021
1.7.3 155,387 7/27/2021
1.7.2 7,584 7/27/2021
1.7.1 1,206,245 1/28/2021
1.7.0 902,623 11/10/2020
1.6.9 161,065 10/12/2020
1.6.7 1,664,350 4/29/2020
1.6.6 22,137 4/17/2020
1.6.5 162,907 3/27/2020
1.6.4 12,818 3/25/2020
1.6.3 58,724 3/14/2020
1.6.2 115,112 2/17/2020
1.6.1 724,450 10/1/2019
1.6.0 42,092 9/19/2019
1.5.1 383,319 7/10/2019
1.5.0 978,092 3/8/2019
1.4.6 119,721 2/19/2019
1.4.5 315,744 11/11/2018
1.4.4 370,897 7/5/2018
1.4.3 52,487 6/1/2018
1.4.2 161,745 2/2/2018
1.4.1 9,110 1/18/2018
1.4.0 37,915 12/22/2017
1.3.4 26,712 11/28/2017
1.3.3 3,816 11/24/2017
1.3.2 158,642 8/15/2017
1.3.1 19,391 6/23/2017
1.3.0 4,480 6/8/2017
1.2.7 10,957 5/12/2017
1.2.6 4,165 5/4/2017
1.2.5 2,785 5/4/2017
1.2.4 16,112 2/25/2017
1.2.3 10,823 11/17/2016
1.2.2 2,951 11/10/2016
1.2.1 2,878 11/8/2016
1.2.0 13,009 10/23/2016
1.1.2 2,826 9/29/2016
1.1.1 2,625 9/14/2016
1.1.0 4,331 9/5/2016
1.0.0 6,449 9/4/2016