Cube.Pdf.Ghostscript 2.16.0

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

// Install Cube.Pdf.Ghostscript as a Cake Tool
#tool nuget:?package=Cube.Pdf.Ghostscript&version=2.16.0

AppVeyor Azure Pipelines Codecov

Cube.Pdf.Ghostscript is a library to use the Ghostscript in the .NET Framework 3.5, 4.5, or later. Note that the Cube.Pdf.Ghostscript library is available for NuGet, but you need to copy the gsdll32.dll to the executing directory manually. You can download the DLL from www.ghostscript.com or Cube.Native.Ghostscript NuGet package.

Usage

Cube.Pdf.Ghostscript.Converter is the base class of other converter classes and a thin wrapper of the Ghostscript API. Basic interfaces of converters are as follows:

// using System.Collections.Generics;
// using Cube.Pdf.Ghostscript;

public class Converter
{
    public Converter(Format format);
    public ICollection<Argument> Options;
    public ICollection<Code> Codes;
    public void Invoke(string src, string dest);
}

When you convert a PostScript file to any other formats, you specify the target format at the constructor of the Converter class, add some options, and finally execute the Invoke method. The Ghostscript API has two kinds of parameters, one is normal arguments and the other is PostScript codes. Options and Codes properties of the Converter class correspond respectively.

Instead of using the Converter class directly, you can use some inherited classes according to your purpose. For example, the following code converts to the PDF format.

// using Cube.Pdf;
// using Cube.Pdf.Ghostscript;

var converter = new PdfConverter
{
    Paper        = Paper.Auto,
    Orientation  = Orientation.Auto,
    ColorMode    = ColorMode.Rgb,
    Resolution   = 600,
    Compression  = Encoding.Jpeg,
    Downsampling = Downsampling.None,
    Version      = new PdfVersion(1, 7),
};
converter.Invoke(@"path\to\src.ps", @"path\to\dest.pdf");

When you set values to the properties, Converter inherited classes automatically add the corresponding arguments or PostScript codes to the Ghostscript API. The library provides the following variations. All available formats and other options are defined in the Parameters directory.

When you need to add some options manually, you create a new instance of the Argument class and add it to the Options property. Constructors of the Argument class are as follows:

// using Cube.Pdf.Ghostscript;

public class Argument
{
    public Argument(string name, string value);
    public Argument(string name, bool value);
    public Argument(string name, int value);
    public Argument(char type);
    public Argument(char type, int value);
    public Argument(char type, string name);
    public Argument(char type, string name, bool value);
    public Argument(char type, string name, int value);
    public Argument(char type, string name, string value);
    public Argument(char type, string name, string value, bool literal);
}

Dependencies

Contributing

  1. Fork Cube.Pdf repository.
  2. Create a feature branch from the master or stable branch (e.g. git checkout -b my-new-feature origin/master). Note that the master branch may refer some pre-released NuGet packages. Try the rake clean command when build errors occur.
  3. Commit your changes.
  4. Rebase your local changes against the master or stable branch.
  5. Run test suite with the NUnit console or the Visual Studio (NUnit 3 test adapter) and confirm that it passes.
  6. Create new Pull Request.

License

Copyright © 2010 CubeSoft, Inc. The Cube.Pdf.Ghostscript library is licensed under the GNU AGPLv3.

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 is compatible.  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 was computed.  net481 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 Cube.Pdf.Ghostscript:

Package Downloads
Cube.Pdf.Converter

Core module of the CubePDF application.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.7.0 115 3/21/2024
8.6.0 1,169 2/9/2024
8.5.5 1,264 12/20/2023
8.5.4 351 11/21/2023
8.5.2 1,463 9/28/2023
8.5.1 147 9/28/2023
8.5.0 434 9/6/2023
8.4.0 276 8/2/2023
8.3.0 761 5/10/2023
8.1.1 1,005 4/4/2023
7.1.1 492 2/15/2023
7.1.0 557 12/19/2022
7.0.2 3,006 8/30/2022
7.0.1 688 8/26/2022
7.0.0 1,169 7/11/2022
6.0.2 1,146 1/26/2022
6.0.1 422 12/27/2021
6.0.0 607 11/19/2021
5.0.1 578 10/26/2021
5.0.0 595 9/28/2021
4.0.2 584 9/3/2021
4.0.1 538 8/6/2021
4.0.0 632 7/13/2021
3.1.5 418 7/5/2021
3.1.4 430 5/12/2021
3.1.3 404 4/15/2021
3.1.2 431 2/9/2021
3.1.1 515 12/4/2020
3.1.0 492 11/11/2020
3.0.0 538 10/7/2020
2.20.2 580 9/8/2020
2.20.1 554 7/28/2020
2.20.0 641 6/9/2020
2.18.4 573 4/27/2020
2.18.2 789 4/15/2020
2.18.1 896 11/25/2019
2.18.0 795 11/12/2019
2.17.0 947 8/2/2019
2.16.1 772 7/3/2019
2.16.0 850 6/21/2019
2.15.0 719 4/19/2019
2.14.0 760 2/17/2019
2.13.0 801 11/20/2018
2.12.0 726 10/23/2018
2.11.0 823 9/28/2018