
Research
NPM targeted by malware campaign mimicking familiar library names
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
HiQPdf Library for .NET Core offers you a modern, simple, fast, flexible and powerful tool to create complex and stylish PDF documents in .NET Core applications with just a few lines of C# code. This library is compatible with .NET Core and .NET Standard for Windows 32-bit (x86) and 64-bit (x64) operating systems. The NuGet package optimized for x64 is HiQPdf.NetCore.x64 . The NuGet packages for .NET Framework are HiQPdf and HiQPdf.x64 . For Linux, MacOS, Azure App Service, Xamarin, UWP or any other platform for .NET you can use the multi-platform HiQPdf.Client NuGet package. HiQPdf Library for .NET Core was built to target the .NET Standard 2.0 and its compatibility list includes: * .NET Core 8, 7, 6, 5, .NET Standard 2.0 , .NET Framework 4.6.2 and the later versions * Windows 32-bit (x86) and 64-bit (x64) operating systems * Azure Cloud Services, Azure Virtual Machines * Web, Desktop and Console applications for .NET HiQPdf Library for .NET offers you the fastest and the most precise HTML to PDF conversion technology. You can convert HTML with CSS3, JavaScript, SVG or Web Fonts to PDF preserving the exact content and style. Library Features: * HTML to PDF to quickly create PDF documents from HTML * HTML to Image to take snapshots of web pages * HTML to SVG to create high quality vector images from HTML * PDF to Image to rasterize PDF document pages to images * PDF to HTML to create HTML documents from PDF pages * PDF to Text to extract text from PDF documents * Search text in PDF documents * Extract images from PDF documents * Create PDF documents with text, HTML, SVG, images and graphics * Create encrypted, password protected, digitally signed PDF documents * Create PDF documents with forms, text notes, links, JavaScript actions * Merge multiple PDF documents into a single one * Stamp PDF with HTML, text and images
HiQPdf Library for .NET Core offers you a modern, simple, fast, flexible and powerful tool to create complex and stylish PDF documents in .NET Core applications with just a few lines of C# code.
HiQPdf library includes the fastest and the most precise HTML to PDF conversion technology. You can easily design a document in HTML with CSS3, JavaScript, SVG or Web Fonts and then convert it to PDF preserving the exact content and style.
The library is much more than just a HTML to PDF converter. It is a complete PDF library that you can use to create new PDF documents and edit existing PDF documents, extract text and images from PDF, search text in PDF, rasterize PDF pages to images or convert PDF to HTML. You can find more details accessing the product web page at http://www.hiqpdf.com/html-to-pdf-library.aspx .
This library is compatible with .NET Core and .NET Standard for Windows 32-bit (x86) and 64-bit (x64) operating systems. The NuGet package optimized for x64 is HiQPdf.NetCore.x64 .
The NuGet packages for .NET Framework are HiQPdf and HiQPdf.x64 .
For Linux, MacOS, Azure App Service, Xamarin, UWP or any other platform for .NET you can use the multi-platform HiQPdf.Client NuGet package. See the http://www.hiqpdf.com/multiplatform-html-to-pdf-library-net-core.aspx page for more details.
HiQPdf Library for .NET Core was built to target the .NET Standard 2.0 and its compatibility list includes:
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;' instruction to make available the HiQPdf namespace to your application code.
// Include the HiQPdf namespace at the top of your C# file
using HiQPdf;
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 the library binaries, an ASP.NET Core demo application with C# code for all library features, the complete product documentation with examples and API reference.
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 Library for .NET Core offers you a modern, simple, fast, flexible and powerful tool to create complex and stylish PDF documents in .NET Core applications with just a few lines of C# code. This library is compatible with .NET Core and .NET Standard for Windows 32-bit (x86) and 64-bit (x64) operating systems. The NuGet package optimized for x64 is HiQPdf.NetCore.x64 . The NuGet packages for .NET Framework are HiQPdf and HiQPdf.x64 . For Linux, MacOS, Azure App Service, Xamarin, UWP or any other platform for .NET you can use the multi-platform HiQPdf.Client NuGet package. HiQPdf Library for .NET Core was built to target the .NET Standard 2.0 and its compatibility list includes: * .NET Core 8, 7, 6, 5, .NET Standard 2.0 , .NET Framework 4.6.2 and the later versions * Windows 32-bit (x86) and 64-bit (x64) operating systems * Azure Cloud Services, Azure Virtual Machines * Web, Desktop and Console applications for .NET HiQPdf Library for .NET offers you the fastest and the most precise HTML to PDF conversion technology. You can convert HTML with CSS3, JavaScript, SVG or Web Fonts to PDF preserving the exact content and style. Library Features: * HTML to PDF to quickly create PDF documents from HTML * HTML to Image to take snapshots of web pages * HTML to SVG to create high quality vector images from HTML * PDF to Image to rasterize PDF document pages to images * PDF to HTML to create HTML documents from PDF pages * PDF to Text to extract text from PDF documents * Search text in PDF documents * Extract images from PDF documents * Create PDF documents with text, HTML, SVG, images and graphics * Create encrypted, password protected, digitally signed PDF documents * Create PDF documents with forms, text notes, links, JavaScript actions * Merge multiple PDF documents into a single one * Stamp PDF with HTML, text and images
We found that hiqpdf_netcore 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.
Research
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.