PdfPig.Filters.Jbig2.PdfboxJbig2
0.1.10.1-alpha003
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Standard 2.0
This package targets .NET Standard 2.0. The package is compatible with this framework or higher.
.NET Framework 4.6.2
This package targets .NET Framework 4.6.2. The package is compatible with this framework or higher.
This is a prerelease version of PdfPig.Filters.Jbig2.PdfboxJbig2.
dotnet add package PdfPig.Filters.Jbig2.PdfboxJbig2 --version 0.1.10.1-alpha003
NuGet\Install-Package PdfPig.Filters.Jbig2.PdfboxJbig2 -Version 0.1.10.1-alpha003
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="PdfPig.Filters.Jbig2.PdfboxJbig2" Version="0.1.10.1-alpha003" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PdfPig.Filters.Jbig2.PdfboxJbig2 --version 0.1.10.1-alpha003
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: PdfPig.Filters.Jbig2.PdfboxJbig2, 0.1.10.1-alpha003"
#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 PdfPig.Filters.Jbig2.PdfboxJbig2 as a Cake Addin #addin nuget:?package=PdfPig.Filters.Jbig2.PdfboxJbig2&version=0.1.10.1-alpha003&prerelease // Install PdfPig.Filters.Jbig2.PdfboxJbig2 as a Cake Tool #tool nuget:?package=PdfPig.Filters.Jbig2.PdfboxJbig2&version=0.1.10.1-alpha003&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
UglyToad.PdfPig.Filters.Jbig2.PdfboxJbig2
Port to C# and PdfPig of the Java ImageIO plugin for the JBIG2 image format (see https://github.com/apache/pdfbox-jbig2).
Original port done by @kasperdaff as part of a PR for PdfPig, see https://github.com/UglyToad/PdfPig/pull/338 and then https://github.com/UglyToad/PdfPig/pull/631
Usage
// Create your filter provider
public sealed class MyFilterProvider : BaseFilterProvider
{
/// <summary>
/// The single instance of this provider.
/// </summary>
public static readonly IFilterProvider Instance = new MyFilterProvider();
/// <inheritdoc/>
private MyFilterProvider() : base(GetDictionary())
{
}
private static Dictionary<string, IFilter> GetDictionary()
{
var ascii85 = new Ascii85Filter();
var asciiHex = new AsciiHexDecodeFilter();
var ccitt = new CcittFaxDecodeFilter();
var dct = new DctDecodeFilter(); // new filter
var flate = new FlateFilter();
var jbig2 = new PdfboxJbig2DecodeFilter(); // new filter
var jpx = new JpxDecodeFilter();
var runLength = new RunLengthFilter();
var lzw = new LzwFilter();
return new Dictionary<string, IFilter>
{
{ NameToken.Ascii85Decode.Data, ascii85 },
{ NameToken.Ascii85DecodeAbbreviation.Data, ascii85 },
{ NameToken.AsciiHexDecode.Data, asciiHex },
{ NameToken.AsciiHexDecodeAbbreviation.Data, asciiHex },
{ NameToken.CcittfaxDecode.Data, ccitt },
{ NameToken.CcittfaxDecodeAbbreviation.Data, ccitt },
{ NameToken.DctDecode.Data, dct }, // new filter
{ NameToken.DctDecodeAbbreviation.Data, dct },
{ NameToken.FlateDecode.Data, flate },
{ NameToken.FlateDecodeAbbreviation.Data, flate },
{ NameToken.Jbig2Decode.Data, jbig2 },
{ NameToken.JpxDecode.Data, jpx },
{ NameToken.RunLengthDecode.Data, runLength },
{ NameToken.RunLengthDecodeAbbreviation.Data, runLength },
{ NameToken.LzwDecode.Data, lzw },
{ NameToken.LzwDecodeAbbreviation.Data, lzw }
};
}
}
var parsingOption = new ParsingOptions()
{
UseLenientParsing = true,
SkipMissingFonts = true,
FilterProvider = MyFilterProvider.Instance
};
using (var doc = PdfDocument.Open("test.pdf", parsingOption))
{
int i = 0;
foreach (var page in doc.GetPages())
{
foreach (var pdfImage in page.GetImages())
{
Assert.True(pdfImage.TryGetPng(out var bytes));
File.WriteAllBytes($"image_{i++}.png", bytes);
}
}
}
Product | Versions 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 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 was computed. 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. |
.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 is compatible. 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 (1)
Showing the top 1 NuGet packages that depend on PdfPig.Filters.Jbig2.PdfboxJbig2:
Package | Downloads |
---|---|
PdfPig.Rendering.Skia
Render pdf documents as images using PdfPig and SkiaSharp. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.1.10.1-alpha003 | 0 | 2/22/2025 |
0.1.10.1-alpha002 | 78 | 2/16/2025 |
0.1.10.1-alpha001 | 102 | 1/26/2025 |