ABCpdf.ABCGecko 13.1.5

Prefix Reserved
dotnet add package ABCpdf.ABCGecko --version 13.1.5                
NuGet\Install-Package ABCpdf.ABCGecko -Version 13.1.5                
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.5" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ABCpdf.ABCGecko --version 13.1.5                
#r "nuget: ABCpdf.ABCGecko, 13.1.5"                
#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.5

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

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.5 184 9/23/2024
13.1.4 991 8/21/2024
13.1.3 2,695 7/16/2024
13.1.2 1,824 7/1/2024
13.1.1 886 5/30/2024
13.1.0 349 5/8/2024
13.0.1.1 1,369 3/28/2024
13.0.0.9 350 3/14/2024
13.0.0.8 412 2/28/2024
13.0.0.7 683 1/31/2024
13.0.0.6 290 1/23/2024
13.0.0.5 1,149 1/3/2024
13.0.0.4 24,374 12/19/2023
13.0.0.3-rc 293 11/27/2023
13.0.0.2-rc 208 11/20/2023
13.0.0.1-rc 184 11/13/2023
13.0.0-rc 279 10/16/2023
12.5.1 26,737 9/4/2023
12.5.0.9 1,323 7/20/2023
12.5.0.8 1,322 6/7/2023
12.5.0.7 1,107 5/15/2023
12.5.0.6 538 4/28/2023
12.5.0.5 7,018 3/30/2023
12.5.0.4 947 3/1/2023
12.5.0.3 1,291 2/27/2023 12.5.0.3 is deprecated.
12.5.0.2 2,019 2/21/2023 12.5.0.2 is deprecated.
12.5.0.1 564 2/7/2023 12.5.0.1 is deprecated.
12.5.0 498 2/6/2023 12.5.0 is deprecated.
12.4.0.1 21,817 12/19/2022
12.4.0 2,199 11/15/2022
12.3.0.6 932 11/9/2022
12.3.0.5 13,052 10/5/2022
12.3.0.4 827 9/21/2022
12.3.0.3 663 8/31/2022
12.3.0.2 903 8/1/2022
12.3.0 14,535 5/31/2022
12.2.0.5 999 5/23/2022
12.2.0.4 2,353 4/25/2022
12.2.0.3 7,139 3/23/2022
12.2.0.2 849 3/9/2022
12.2.0.1 16,845 2/7/2022
12.2.0 2,502 1/4/2022
12.1.1 1,299 12/2/2021
12.1.0.9 899 10/18/2021
12.1.0.8 632 10/7/2021
12.1.0.7 752 9/13/2021
12.1.0.6 694 8/19/2021
12.1.0.5 5,097 6/15/2021
12.1.0.4 770 5/24/2021
12.1.0.3 856 5/5/2021
12.1.0.2 774 4/26/2021
12.1.0.1 777 3/18/2021
12.0.1.6 10,701 3/4/2021
12.0.1.5 23,539 2/9/2021
12.0.1.4 817 1/19/2021
12.0.1.3-rc 464 1/13/2021
12.0.1.2-rc 392 1/8/2021
12.0.1.1-rc 492 12/17/2020
12.0.1-rc 561 12/7/2020
11.3.14 94,631 12/7/2020
11.3.12 21,617 10/19/2020
11.3.10 5,889 7/27/2020
11.3.9 21,169 6/17/2020
11.3.8 9,847 4/28/2020
11.3.7 12,242 3/22/2020
11.3.6 13,805 1/27/2020
11.3.5 1,884 12/20/2019
11.3.4 3,121 11/18/2019
11.3.3 4,722 9/29/2019
11.3.2 109,897 7/18/2019
11.3.1 27,632 6/13/2019
11.2.6 59,858 4/15/2019
11.2.5 2,192 3/4/2019
11.2.4 3,564 1/14/2019
11.2.3 10,673 10/29/2018
11.2.2 7,524 9/3/2018
11.2.1 12,996 7/18/2018
11.2.0 1,984 6/11/2018
11.1.0.2 2,375 4/24/2018
11.1.0.1 2,709 3/21/2018
11.1.0 2,608 2/5/2018
11.0.0.3 6,452 12/5/2017
10.1.2.6 71,082 9/26/2017
10.1.2.5 4,849 8/14/2017
10.1.2.4 2,827 6/26/2017
10.1.2.3 6,170 5/30/2017
10.1.2.2 10,667 3/27/2017
10.1.2.1 5,323 2/17/2017
10.1.2 2,554 2/15/2017
10.1.1.7 2,749 12/20/2016
10.1.1.5 4,903 11/1/2016
10.1.1.4 6,553 9/15/2016
10.1.1.3 1,857 8/24/2016
10.1.1.2 3,929 7/26/2016
10.1.1.1 2,209 6/21/2016
10.1.1 2,070 5/17/2016
10.1.0.9 21,988 4/20/2016
10.1.0.8 6,401 3/1/2016
10.1.0.7 6,597 12/3/2015
10.1.0.6 2,069 10/28/2015
10.1.0.5 2,228 9/29/2015
10.1.0.3 3,761 8/18/2015
10.1.0.2 5,893 7/10/2015
10.1.0 2,493 5/22/2015
10.0.0 27,760 2/10/2015
9.1.2.4 20,993 2/5/2015
9.1.2.3 6,302 11/18/2014
9.1.1.9 11,396 7/11/2014
9.1.1.8 2,618 5/26/2014
9.1.1.7 23,080 4/2/2014
9.1.1.6 2,242 3/13/2014
9.1.1.5 4,122 1/27/2014
9.1.1.4 2,342 12/31/2013
9.1.1.3 2,417 11/13/2013
9.1.1.2 2,386 10/7/2013
9.1.0.2 53,086 6/6/2013
9.0.0.5 3,306 4/3/2013