You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

ABCpdf.ABCChrome117.Linux

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ABCpdf.ABCChrome117.Linux

The ABCpdf .NET ABCChrome117 Linux runtime for HTML to PDF conversion using the Chrome 117 rendering engine. You will need to reference this package if you are using ABCChrome117 on Windows and you want to deploy to a Linux platform. ABCpdf operates three HTML rendering engines for insertion of HTML content. The ABCChrome engine provides google Chrome style HTML conversion. The MSHTML engine leverages IE as installed on the local machine. The Gecko runtime adds Firefox-style HTML rendering to the mix. Placed HTML support means your HTML can be treated just like any other media - placed wherever you like on the page. Paged HTML support allows you to flow your HTML from one area to another - across pages or columns or both. A vast range of options gives you full control over the HTML rendering process and DOM. In terms of features, probably most notably, the Gecko and Chrome engines support repeated table headers and footers. They are also extremely good on SVG and AJAX for charts and maps. The MSHTML and Chrome engines tend to be faster and the MSHTML engine provides a more literal screen based output. ABCChrome and Gecko generally support modern HTML features better than MSHTML.

13.3.5
nugetNuGet
Version published
Maintainers
1
Created
Source

ABCChrome

This is the ABCChrome117 HTML conversion module for Linux.

The base ABCpdf NuGet package includes ABCChrome117 for Windows but not for Linux because of size constraints.

To deploy to Linux you will need to reference this package in addition to the base ABCpdf package. At that point you can publish to Linux.

See the following section of the documentation for a walkthrough.

https://www.websupergoo.com/helppdfnet/source/2-getting_started/6-platforms.htm

Example Code

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.Chrome117;
	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.Chrome117;
	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.

Keywords

ABCpdf

FAQs

Package last updated on 16 Jun 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts