ABCpdf.ABCWebKit 13.0.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.ABCWebKit --version 13.0.1.1
NuGet\Install-Package ABCpdf.ABCWebKit -Version 13.0.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.ABCWebKit" Version="13.0.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ABCpdf.ABCWebKit --version 13.0.1.1
#r "nuget: ABCpdf.ABCWebKit, 13.0.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.ABCWebKit as a Cake Addin
#addin nuget:?package=ABCpdf.ABCWebKit&version=13.0.1.1

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

ABCWebKit

This is the ABCWebKit 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.WebKit;
	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.WebKit;
	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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
13.0.1.1 211 3/28/2024
13.0.0.9 179 3/14/2024
13.0.0.8 215 2/28/2024
13.0.0.7 182 1/31/2024
13.0.0.6 134 1/23/2024
13.0.0.5 287 1/3/2024
13.0.0.4 171 12/19/2023
13.0.0.3-rc 160 11/27/2023
13.0.0.2-rc 108 11/20/2023
13.0.0.1-rc 97 11/13/2023
13.0.0-rc 266 10/16/2023
12.5.1 8,904 9/4/2023
12.5.0.9 652 7/20/2023
12.5.0.8 2,294 6/7/2023
12.5.0.7 373 5/15/2023
12.5.0.6 235 4/28/2023
12.5.0.5 1,106 3/30/2023
12.5.0.4 728 3/1/2023
12.5.0.3 331 2/27/2023
12.5.0.2 530 2/21/2023
12.5.0.1 3,366 2/7/2023
12.5.0 304 2/6/2023
12.4.0.1 3,544 12/19/2022
12.4.0 2,321 11/15/2022
12.3.0.6 4,528 11/9/2022
12.3.0.5 2,962 10/5/2022
12.3.0.4 591 9/21/2022
12.3.0.3 1,090 8/31/2022
12.3.0.2 3,668 8/1/2022
12.3.0 2,852 5/31/2022
12.2.0.5 41,995 5/23/2022
12.2.0.4 727 4/25/2022
12.2.0.3 3,663 3/23/2022
12.2.0.2 1,513 3/9/2022
12.2.0.1 1,081 2/7/2022
12.2.0 404 1/4/2022
12.1.1 1,110 12/2/2021
12.1.0.9 1,026 10/18/2021
12.1.0.8 416 10/7/2021
12.1.0.7 1,144 9/13/2021
12.1.0.6 701 8/19/2021
12.1.0.5 9,609 6/15/2021
12.1.0.4 75,237 5/24/2021
12.1.0.3 451 5/5/2021
12.1.0.2 464 4/26/2021
12.1.0.1 1,113 3/18/2021