ABCpdf.ABCGecko 13.1.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package ABCpdf.ABCGecko --version 13.1.1
NuGet\Install-Package ABCpdf.ABCGecko -Version 13.1.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="ABCpdf.ABCGecko" Version="13.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ABCpdf.ABCGecko --version 13.1.1
#r "nuget: ABCpdf.ABCGecko, 13.1.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 ABCpdf.ABCGecko as a Cake Addin
#addin nuget:?package=ABCpdf.ABCGecko&version=13.1.1

// Install ABCpdf.ABCGecko as a Cake Tool
#tool nuget:?package=ABCpdf.ABCGecko&version=13.1.1

ABCGecko

This is the ABCGecko HTML conversion module.

It is intended for use with the ABCpdf NuGet package. ABCChrome will not function without it.

First you need to ensure you are using the correct namespace. Insert the following at the top of your C# module.

using WebSupergoo.ABCpdf13;

You select this HTML conversion module by setting the HtmlOptions.Engine property.

For example, if you are in a forms or console application, the following may be useful.

using (Doc doc = new Doc()) {
	doc.HtmlOptions.Engine = EngineType.Gecko;
	doc.AddImageUrl("http://www.google.com/");
	doc.Save(@"C:\_output.pdf"); // adjust path for your needs
}

Alternatively if you are running under ASP.NET, you may want a Page_Load function something like this.

byte[] theData = null;
using (Doc doc = new Doc()) {
	doc.HtmlOptions.Engine = EngineType.Gecko;
	doc.AddImageUrl("http://www.google.com/");
	theData = doc.GetData();
}
Response.Clear();
Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "inline; filename=MyPDF.PDF");
Response.AddHeader("content-length", theData.Length.ToString());
Response.BinaryWrite(theData);
Response.End();

For more example projects, please download the installer bundle from the ABCpdf download site.

Documentation

Documentation for ABCpdf can be found here:

https://www.websupergoo.com/helppdfnet/

Alternatively you can download the installer bundle from the ABCpdf download site as this contains full documentation in CHM format.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on ABCpdf.ABCGecko:

Package Downloads
CertiPay.PDF

This library is intended to wrap PDF generation code in our system

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
13.1.1 402 5/30/2024
13.1.0 284 5/8/2024
13.0.1.1 1,125 3/28/2024
13.0.0.9 269 3/14/2024
13.0.0.8 357 2/28/2024
13.0.0.7 503 1/31/2024
13.0.0.6 225 1/23/2024
13.0.0.5 854 1/3/2024
13.0.0.4 16,250 12/19/2023
13.0.0.3-rc 249 11/27/2023
13.0.0.2-rc 161 11/20/2023
13.0.0.1-rc 123 11/13/2023
13.0.0-rc 238 10/16/2023
12.5.1 19,996 9/4/2023
12.5.0.9 1,028 7/20/2023
12.5.0.8 1,285 6/7/2023
12.5.0.7 1,084 5/15/2023
12.5.0.6 498 4/28/2023
12.5.0.5 6,163 3/30/2023
12.5.0.4 872 3/1/2023
12.5.0.3 1,272 2/27/2023
12.5.0.2 1,998 2/21/2023
12.5.0.1 533 2/7/2023
12.5.0 481 2/6/2023
12.4.0.1 21,277 12/19/2022
12.4.0 1,977 11/15/2022
12.3.0.6 905 11/9/2022
12.3.0.5 11,154 10/5/2022
12.3.0.4 808 9/21/2022
12.3.0.3 636 8/31/2022
12.3.0.2 857 8/1/2022
12.3.0 14,148 5/31/2022
12.2.0.5 976 5/23/2022
12.2.0.4 1,934 4/25/2022
12.2.0.3 6,568 3/23/2022
12.2.0.2 826 3/9/2022
12.2.0.1 16,345 2/7/2022
12.2.0 2,381 1/4/2022
12.1.1 1,281 12/2/2021
12.1.0.9 865 10/18/2021
12.1.0.8 614 10/7/2021
12.1.0.7 735 9/13/2021
12.1.0.6 660 8/19/2021
12.1.0.5 4,975 6/15/2021
12.1.0.4 743 5/24/2021
12.1.0.3 829 5/5/2021
12.1.0.2 751 4/26/2021
12.1.0.1 760 3/18/2021
12.0.1.6 9,348 3/4/2021
12.0.1.5 23,516 2/9/2021
12.0.1.4 792 1/19/2021
12.0.1.3-rc 447 1/13/2021
12.0.1.2-rc 380 1/8/2021
12.0.1.1-rc 475 12/17/2020
12.0.1-rc 549 12/7/2020
11.3.14 88,920 12/7/2020
11.3.12 21,022 10/19/2020
11.3.10 5,571 7/27/2020
11.3.9 20,809 6/17/2020
11.3.8 9,631 4/28/2020
11.3.7 11,808 3/22/2020
11.3.6 13,791 1/27/2020
11.3.5 1,845 12/20/2019
11.3.4 2,202 11/18/2019
11.3.3 3,931 9/29/2019
11.3.2 100,171 7/18/2019
11.3.1 27,569 6/13/2019
11.2.6 59,377 4/15/2019
11.2.5 2,165 3/4/2019
11.2.4 3,518 1/14/2019
11.2.3 10,124 10/29/2018
11.2.2 6,965 9/3/2018
11.2.1 12,528 7/18/2018
11.2.0 1,953 6/11/2018
11.1.0.2 2,351 4/24/2018
11.1.0.1 2,680 3/21/2018
11.1.0 2,529 2/5/2018
11.0.0.3 6,428 12/5/2017
10.1.2.6 66,059 9/26/2017
10.1.2.5 4,796 8/14/2017
10.1.2.4 2,793 6/26/2017
10.1.2.3 6,148 5/30/2017
10.1.2.2 10,002 3/27/2017
10.1.2.1 5,280 2/17/2017
10.1.2 2,426 2/15/2017
10.1.1.7 2,625 12/20/2016
10.1.1.5 4,876 11/1/2016
10.1.1.4 5,793 9/15/2016
10.1.1.3 1,838 8/24/2016
10.1.1.2 3,830 7/26/2016
10.1.1.1 2,185 6/21/2016
10.1.1 2,056 5/17/2016
10.1.0.9 21,960 4/20/2016
10.1.0.8 6,256 3/1/2016
10.1.0.7 6,568 12/3/2015
10.1.0.6 2,030 10/28/2015
10.1.0.5 2,198 9/29/2015
10.1.0.3 3,689 8/18/2015
10.1.0.2 5,872 7/10/2015
10.1.0 2,456 5/22/2015
10.0.0 26,741 2/10/2015
9.1.2.4 20,819 2/5/2015
9.1.2.3 6,277 11/18/2014
9.1.1.9 11,250 7/11/2014
9.1.1.8 2,590 5/26/2014
9.1.1.7 22,103 4/2/2014
9.1.1.6 2,216 3/13/2014
9.1.1.5 4,027 1/27/2014
9.1.1.4 2,316 12/31/2013
9.1.1.3 2,396 11/13/2013
9.1.1.2 2,375 10/7/2013
9.1.0.2 52,998 6/6/2013
9.0.0.5 3,291 4/3/2013