Ibex.PDF.Creator 6.3.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Ibex.PDF.Creator --version 6.3.1
NuGet\Install-Package Ibex.PDF.Creator -Version 6.3.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="Ibex.PDF.Creator" Version="6.3.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Ibex.PDF.Creator --version 6.3.1
#r "nuget: Ibex.PDF.Creator, 6.3.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 Ibex.PDF.Creator as a Cake Addin
#addin nuget:?package=Ibex.PDF.Creator&version=6.3.1

// Install Ibex.PDF.Creator as a Cake Tool
#tool nuget:?package=Ibex.PDF.Creator&version=6.3.1

Ibex.PDF.Creator

Ibex is a scalable standards-compliant PDF creation component for .Net.

See https://www.xmlpdf.com for more information.

Ibex helps you quickly create complex documents providing complete control over page layout and content. Ibex supports a wide range of layout functionality including page headers and footers, multi-column pages, page numbering, cross-referencing, footnotes, index creation and much more.

Ibex supports complex table layouts like this:

tables.png

including cells which span multiple rows and columns, aligning data on decimal points regardless of font size, conditional headers and footers (for saying "continued on next page"), conditional borders at page breaks and lots more.

Bookmarks can be automatically generated using XSLT, including clickable page numbers which link to the correct page in the document:

bookmarks.png

Ibex supports SVG images including transparency, linear and radial gradients, and SVG images which contain other bitmap images:

svg.png

A simple example using Ibex .NET from C#

This example shows how to call Ibex from a C# program and create a PDF file from XML and XSL files.

In this example we use an XML file containing the data we want to get into the PDF file, and and XSL stylesheet which transforms the XML into the FO syntax which Ibex understands. The XML file

The XML used in this example contains text held in one or more paragraph elements. It looks like this:

<?xml version="1.0" encoding="UTF-8"?>
<text>
  <para>hello world</para>
</text>

An XSL stylesheet is used to transform the XML into XSL-FO syntax. Using a stylesheet means that when the data changes (in the XML file) we do not have to make any changes to the C# program or the XSL stylesheet. If we add new elements to the XML which we want to appear in the PDF file, then we will need to change the XSL stylesheet, but we won't have to change the C# program. And changing the XSL is simple because we don't need to recompile it and can just use a text editor to maintain it.

The XSL used in this example looks like this:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns="http://www.w3.org/1999/XSL/Format"
  xmlns:ibex="http://www.xmlpdf.com/2003/ibex/Format">
  
  <xsl:strip-space elements="*"/>

  <xsl:template match="text">

    <fo:root>

      <fo:layout-master-set>
        <fo:simple-page-master master-name="page-layout">
          <fo:region-body margin="2.5cm" region-name="body" background-color="#dddddd"/>
        </fo:simple-page-master>
      </fo:layout-master-set>

      <fo:page-sequence master-reference="page-layout">
        <fo:flow flow-name="body">
          <xsl:apply-templates select="para"/>
        </fo:flow>
      </fo:page-sequence>

    </fo:root>

  </xsl:template>

  <xsl:template match="para">
    <fo:block>
      <xsl:apply-templates select="text()"/>
    </fo:block>
  </xsl:template>

</xsl:stylesheet>

Basically what this XSL does it output the <fo:root> element of the FO file, which contains the fo:layout-master-set defining the page structure, and then output each <para> element from the XML inside an FO block element.

The C# program used in this example is:

using ibex4;

public class HelloWorld {
    static void Main( string[] args ) {
        if( args.Length < 3 ) {
            Console.WriteLine( "usage:hello xml-file xsl-file pdf-file" );
            return;
        }

        FileStream xml = new FileStream( args[0], FileMode.Open, FileAccess.Read );
        FileStream xsl = new FileStream( args[1], FileMode.Open, FileAccess.Read );
        FileStream pdf = new FileStream( args[2], FileMode.Create, FileAccess.Write );

        FODocument doc = new FODocument();

        doc.generate( xml, xsl, pdf );
    }
}

What this program does is:

  • check that we have 3 arguments;
  • create streams for input of the XML and XSL, and output of the PDF;
  • create an Ibex FODocument object;
  • call the generate() method to create the PDF file.

The program can be compiled from the command line, linking Ibex like this:

Create a new project class, for example, "hello"

dotnet new console --name hello
cd hello
dotnet add package Ibex.PDF.Creator

edit the Program.cs file created when the project was created and replace its contents with this:

using ibex4;

public class HelloWorld {
    static void Main( string[] args ) {
        if( args.Length < 3 ) {
            Console.WriteLine( "usage:hello xml-file xsl-file pdf-file" );
            return;
        }

        FileStream xml = new FileStream( args[0], FileMode.Open, FileAccess.Read );
        FileStream xsl = new FileStream( args[1], FileMode.Open, FileAccess.Read );
        FileStream pdf = new FileStream( args[2], FileMode.Create, FileAccess.Write );

        FODocument doc = new FODocument();

        doc.generate( xml, xsl, pdf );
    }
}

build the project

    dotnet build

This creates the program hello.exe. To run it we pass the names of the XML, XSL and PDF files on the command line like this:

dotnet run hello.xml hello.xsl hello-world.pdf

This will create the file hello.pdf containing the data from hello-world.xml.

See https://www.xmlpdf.com for more information.

Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.6.2.2 147 3/24/2024
6.6.1.3 423 2/13/2024
6.6.1.2 89 2/13/2024
6.6.1.1 695 12/11/2023
6.5.1.9 3,173 10/31/2023
6.5.1.8 188 10/8/2023
6.5.1.7 195 10/2/2023
6.5.1.6 156 9/21/2023
6.5.1.5 136 9/12/2023
6.5.1.4 105 9/12/2023
6.5.1.2 1,438 6/25/2023
6.5.1.1 1,155 6/1/2023
6.5.0.9 117 5/29/2023
6.5.0.8 223 5/23/2023
6.5.0.7 116 5/22/2023
6.5.0.6 150 5/14/2023
6.5.0.5 113 5/14/2023
6.5.0.3 115 5/13/2023
6.5.0.2 116 5/13/2023
6.5.0.1 122 5/13/2023
6.4.9.4 3,185 2/13/2023
6.4.9.3 1,463 10/9/2022
6.4.9.2 445 9/16/2022
6.4.7.1 381 8/31/2022
6.4.6.1 346 8/29/2022
6.4.4.1-beta 115 8/26/2022
6.4.3.1 425 8/17/2022
6.4.2 4,628 5/9/2022
6.4.1 386 5/9/2022
6.3.1 391 5/9/2022
6.2.6 421 4/3/2022
6.2.4 417 4/2/2022
6.2.3 411 3/30/2022
6.2.2 425 3/27/2022
6.2.1 504 3/19/2022
6.1.1 530 3/6/2022
6.0.20-beta 160 2/23/2022
6.0.1-beta 153 2/12/2022
6.0.0-beta 160 2/11/2022