🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

HtmlRenderer.PdfSharp

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

HtmlRenderer.PdfSharp

PDF document generator from HTML snippet, 100% managed (C#), High performance library using PdfSharp. Features and Benefits: --- * 100% managed code depends only on PdfSharp library, no ActiveX, no MSHTML. * Extensive HTML 4.01 and CSS level 2 specifications support. * Support separating CSS from HTML by loading stylesheet code separately. * Handles "real world" malformed HTML, it doesn't have to be XHTML. * Supports .NET 2.0 or higher including Client Profile. * Lightweight, only two DLLs (~300K). * High performance and low memory footprint. * Extendable and configurable.

1.5.1-beta1
NuGet
Version published
Maintainers
1
Created
Source

********** Welcome to the HTML Renderer PdfSharp library! *****************************************

This library provides the ability to generate PDF documents from HTML snippets using static rendering code. For more info see HTML Renderer on CodePlex: http://htmlrenderer.codeplex.com

********** DEMO APPLICATION ***********************************************************************

HTML Renderer Demo application showcases HTML Renderer capabilities, use it to explore and learn on the library: http://htmlrenderer.codeplex.com/wikipage?title=Demo%20application

********** FEEDBACK / RELEASE NOTES ***************************************************************

If you have problems, wish to report a bug, or have a suggestion please start a thread on HTML Renderer discussions page: http://htmlrenderer.codeplex.com/discussions

For full release notes and all versions see: http://htmlrenderer.codeplex.com/releases

********** QUICK START ****************************************************************************

For more Quick Start see: https://htmlrenderer.codeplex.com/wikipage?title=Quick%20start

********** Quick Start: Create PDF from HTML snippet using PdfSharp

class Program { private static void Main(string[] args) { PdfDocument pdf = PdfGenerator.GeneratePdf("

Hello World

This is html rendered text

", PageSize.A4); pdf.Save("document.pdf"); } }

Keywords

html

FAQs

Package last updated on 14 Nov 2016

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