
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
HiQPdf.LatestChromium.Windows
Advanced tools
HiQPdf Latest Chromium for .NET on Windows converts HTML to PDF, HTML to Image and Word DOCX to PDF using the latest stable Chromium engine with newer rendering features and security updates. The HTML to PDF converter uses Chromium as rendering engine which can render all the modern HTML, CSS and JavaScript in conformance with the latest standards and technologies. The .NET library is built for .NET Standard 2.0 which makes compatible with a wide range of .NET Core and .NET Framework versions. The native runtime is compatible with Windows 64-bit platforms. This package can be used in Azure App Service and Azure Functions applications for Windows platform. For Linux platforms there is a separate package containing the same .NET library and the native runtime for Linux. The package is compatible with a wide range of Windows platforms including: * Convert HTML with CSS, Web Fonts and JavaScript to PDF * Support the latest HTML and JavaScript standards * Use HTML templates for PDF headers and footers with page numbers * Repeat HTML table headers and footers in PDF pages * Control PDF page breaks using CSS in HTML * Create PDF outlines and tables of contents from heading tags * Convert specific HTML regions * Retrieve HTML element positions in the PDF * Create tagged PDFs for accessibility * Trigger conversion automatically or manually * Render for screen or print media types * Set viewer preferences and apply PDF security and signatures * Set HTTP headers and cookies * Use GET and POST requests * Convert HTML to JPEG, PNG and WEBP images * Convert Word DOCX to PDF
HiQPdf Latest Chromium for .NET on Windows converts HTML to PDF, HTML to Image and Word DOCX to PDF using the latest stable Chromium engine with newer rendering features and security updates.
The HTML to PDF converter uses Chromium as rendering engine which can render all the modern HTML, CSS and JavaScript in conformance with the latest standards and technologies.
The library is much more than just a HTML to PDF converter. It can also be used to automatically generate the PDF document outline with bookmarks, set the security permissions, password protect and digitally sign the generated PDF document.
You can find more details accessing the product web page at http://www.hiqpdf.com/hiqpdf-chromium-html-to-pdf-library-net.aspx .
The .NET library is built for .NET Standard 2.0 which makes compatible with a wide range of .NET Core and .NET Framework versions. The native runtime is compatible with Windows 64-bit platforms.
This package can be used in Azure App Service and Azure Functions applications for Windows platform.
For Linux platforms there is a separate package containing the same .NET library and the native runtime for Linux.
The package is compatible with a wide range of Windows platforms including:
You can start by copying the C# code below in your application or you can start with our demo applications for .NET Core from downloadable product package.
The C# code samples below show how to quickly produce PDF documents from HTML pages or HTML code and save the resulted PDF to a memory buffer, to a PDF file or send it to browser for download when created in ASP.NET Core applications.
At the top of your C# source file you have to add the 'using HiQPdf.Chromium;' instruction to make available the HiQPdf namespace to your application code.
// Include the HiQPdf namespace at the top of your C# file
using HiQPdf.Chromium;
You can use the C# code below to convert a HTML code or a HTML page from a given URL to a PDF file.
// Create the HTML to PDF converter object
HtmlToPdf converter = new HtmlToPdf();
// Convert the HTML code to a PDF file
converter.ConvertHtmlToFile("<b>Hello World</b> from HiQPdf !", null, "html_to_file.pdf");
// Convert the HTML page from URL to a PDF file
string urlToConvert = "http://www.hiqpdf.com";
converter.ConvertUrlToFile(urlToConvert, "url_to_file.pdf");
Alternatively you can produce the PDF document in a memory buffer that you can further save to a file on server.
// Create the HTML to PDF converter object
HtmlToPdf converter = new HtmlToPdf();
// Convert the HTML code to memory
byte[] htmlToPdfData = converter.ConvertHtmlToMemory("<b>Hello World</b> from HiQPdf !", null);
// Save the PDF data to a file
System.IO.File.WriteAllBytes("html_to_memory.pdf", htmlToPdfData);
// Convert the HTML page from URL to memory
string urlToConvert = "http://www.hiqpdf.com";
byte[] urlToPdfData = converter.ConvertUrlToMemory(urlToConvert);
// Save the PDF data to a file
System.IO.File.WriteAllBytes("url_to_memory.pdf", urlToPdfData);
The C# code below can be used in your ASP.NET Core applications to convert a HTML code to PDF in a memory buffer and then send the PDF data for download to browser.
// Create the HTML to PDF converter object
HtmlToPdf converter = new HtmlToPdf();
// Convert the HTML code to memory
byte[] htmlToPdfData = converter.ConvertHtmlToMemory("<b>Hello World</b> from HiQPdf !", null);
FileResult fileResult = new FileContentResult(htmlToPdfData, "application/pdf");
fileResult.FileDownloadName = "html_to_pdf.pdf";
return fileResult;
You can download a free trial package for .NET Core from http://www.hiqpdf.com/downloads.aspx web page.
The free trial package for .NET Core contains an ASP.NET Core demo application with C# code for all library features.
The licensing model is simple and flexible. The licenses are perpetual and there is no limit for the number of machines where you can deploy your applications using the HiQPdf library. You can find more details about licensing on http://www.hiqpdf.com/purchase.aspx web page.
For support and questions please use the email addresses from the http://www.hiqpdf.com/contact.aspx web page.
FAQs
HiQPdf Latest Chromium for .NET on Windows converts HTML to PDF, HTML to Image and Word DOCX to PDF using the latest stable Chromium engine with newer rendering features and security updates. The HTML to PDF converter uses Chromium as rendering engine which can render all the modern HTML, CSS and JavaScript in conformance with the latest standards and technologies. The .NET library is built for .NET Standard 2.0 which makes compatible with a wide range of .NET Core and .NET Framework versions. The native runtime is compatible with Windows 64-bit platforms. This package can be used in Azure App Service and Azure Functions applications for Windows platform. For Linux platforms there is a separate package containing the same .NET library and the native runtime for Linux. The package is compatible with a wide range of Windows platforms including: * Convert HTML with CSS, Web Fonts and JavaScript to PDF * Support the latest HTML and JavaScript standards * Use HTML templates for PDF headers and footers with page numbers * Repeat HTML table headers and footers in PDF pages * Control PDF page breaks using CSS in HTML * Create PDF outlines and tables of contents from heading tags * Convert specific HTML regions * Retrieve HTML element positions in the PDF * Create tagged PDFs for accessibility * Trigger conversion automatically or manually * Render for screen or print media types * Set viewer preferences and apply PDF security and signatures * Set HTTP headers and cookies * Use GET and POST requests * Convert HTML to JPEG, PNG and WEBP images * Convert Word DOCX to PDF
We found that hiqpdf.latestchromium.windows demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.