Initial commit of version 0.9.5.2; no older versions exist for this repo.

This commit is contained in:
2016-11-05 12:02:02 -05:00
parent ea2f5b8a59
commit 98b3626154
111 changed files with 97171 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
********** 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("<p><h1>Hello World</h1>This is html rendered text</p>", PageSize.A4);
pdf.Save("document.pdf");
}
}
+50
View File
@@ -0,0 +1,50 @@
********** Welcome to the HTML Renderer WinForms library! *****************************************
This library provides the rich formatting power of HTML in your WinForms .NET applications using
simple controls or 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: Use HTML panel control on WinForms form
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
TheArtOfDev.HtmlRenderer.WinForms.HtmlPanel htmlPanel = new TheArtOfDev.HtmlRenderer.WinForms.HtmlPanel();
htmlPanel.Text = "<p><h1>Hello World</h1>This is html rendered text</p>";
htmlPanel.Dock = DockStyle.Fill;
Controls.Add(htmlPanel);
}
}
***************************************************************************************************
********** Quick Start: Create image from HTML snippet
class Program
{
private static void Main(string[] args)
{
Image image = TheArtOfDev.HtmlRenderer.WinForms.HtmlRender.RenderToImage("<p><h1>Hello World</h1>This is html rendered text</p>");
image.Save("image.png", ImageFormat.Png);
}
}
Binary file not shown.
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff