![]() |
VOOZH | about |
dotnet add package ABCpdf.ABCGecko --version 14.0.4
NuGet\Install-Package ABCpdf.ABCGecko -Version 14.0.4
<PackageReference Include="ABCpdf.ABCGecko" Version="14.0.4" />
<PackageVersion Include="ABCpdf.ABCGecko" Version="14.0.4" />Directory.Packages.props
<PackageReference Include="ABCpdf.ABCGecko" />Project file
paket add ABCpdf.ABCGecko --version 14.0.4
#r "nuget: ABCpdf.ABCGecko, 14.0.4"
#:package ABCpdf.ABCGecko@14.0.4
#addin nuget:?package=ABCpdf.ABCGecko&version=14.0.4Install as a Cake Addin
#tool nuget:?package=ABCpdf.ABCGecko&version=14.0.4Install as a Cake Tool
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.ABCpdf14;
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 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.
Learn more about Target Frameworks and .NET Standard.
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 |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 14.0.4 | 358 | 6/16/2026 |
| 14.0.3 | 313 | 6/13/2026 |
| 14.0.2 | 1,638 | 6/1/2026 |
| 14.0.1-rc | 102 | 5/12/2026 |
| 14.0.0-rc | 102 | 5/5/2026 |
| 13.4.4 | 6,211 | 4/9/2026 |
| 13.4.3 | 7,824 | 2/11/2026 |
| 13.4.2 | 2,311 | 1/22/2026 |
| 13.4.1 | 1,103 | 1/13/2026 |
| 13.4.0 | 2,891 | 12/2/2025 |
| 13.3.10 | 4,226 | 11/11/2025 |
| 13.3.9 | 1,549 | 10/30/2025 |
| 13.3.8 | 1,149 | 10/7/2025 |
| 13.3.7 | 361 | 9/25/2025 |
| 13.3.6 | 3,161 | 8/6/2025 |
| 13.3.5 | 1,862 | 6/16/2025 |
| 13.3.4 | 1,057 | 5/6/2025 |
| 13.3.3 | 2,004 | 3/20/2025 |
| 13.3.2 | 1,736 | 2/24/2025 |
| 13.3.1 | 2,509 | 1/27/2025 |