ABCpdf.ABCChrome65 13.1.5

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package ABCpdf.ABCChrome65 --version 13.1.5                
NuGet\Install-Package ABCpdf.ABCChrome65 -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.ABCChrome65" Version="13.1.5" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ABCpdf.ABCChrome65 --version 13.1.5                
#r "nuget: ABCpdf.ABCChrome65, 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.ABCChrome65 as a Cake Addin
#addin nuget:?package=ABCpdf.ABCChrome65&version=13.1.5

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

ABCChrome

This is the ABCChrome65 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.Chrome65;
	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.Chrome65;
	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.2.0 235 10/14/2024
13.1.6 423 10/9/2024
13.1.5 208 9/23/2024
13.1.4 307 8/21/2024
13.1.3 218 7/16/2024
13.1.2 274 7/1/2024
13.1.1 319 5/30/2024
13.1.0 245 5/8/2024
13.0.1.1 375 3/28/2024
13.0.0.9 397 3/14/2024
13.0.0.8 433 2/28/2024
13.0.0.7 341 1/31/2024
13.0.0.6 267 1/23/2024
13.0.0.5 462 1/3/2024
13.0.0.4 366 12/19/2023
13.0.0.3-rc 351 11/27/2023
13.0.0.2-rc 166 11/20/2023
13.0.0.1-rc 196 11/13/2023
13.0.0-rc 429 10/16/2023
12.5.1 20,697 9/4/2023
12.5.0.9 736 7/20/2023
12.5.0.8 539 6/7/2023
12.5.0.7 335 5/15/2023
12.5.0.6 407 4/28/2023
12.5.0.5 9,905 3/30/2023
12.5.0.4 1,279 3/1/2023
12.5.0.3 1,240 2/27/2023 12.5.0.3 is deprecated.
12.5.0.2 504 2/21/2023 12.5.0.2 is deprecated.
12.5.0.1 495 2/7/2023 12.5.0.1 is deprecated.
12.5.0 571 2/6/2023 12.5.0 is deprecated.
12.4.0.1 829 12/19/2022
12.4.0 1,286 11/15/2022
12.3.0.6 584 11/9/2022
12.3.0.5 14,372 10/5/2022
12.3.0.4 787 9/21/2022
12.3.0.3 776 8/31/2022
12.3.0.2 6,232 8/1/2022
12.3.0 1,265 5/31/2022
12.2.0.5 965 5/23/2022
12.2.0.4 991 4/25/2022
12.2.0.3 919 3/23/2022
12.2.0.2 1,012 3/9/2022
12.2.0.1 879 2/7/2022
12.2.0 516 1/4/2022
12.1.1 529 12/2/2021
12.1.0.9 587 10/18/2021
12.1.0.8 554 10/7/2021
12.1.0.7 682 9/13/2021
12.1.0.6 556 8/19/2021
12.1.0.5 844 6/15/2021
12.1.0.4 594 5/24/2021
12.1.0.3 652 5/5/2021
12.1.0.2 630 4/26/2021
12.1.0.1 646 3/18/2021
12.0.1.6 837 3/4/2021
12.0.1.5 668 2/9/2021
12.0.1.4 679 1/19/2021
12.0.1.3-rc 368 1/13/2021
12.0.1.2-rc 344 1/8/2021
12.0.1.1-rc 392 12/17/2020
12.0.1-rc 381 12/7/2020