Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions Build/NuGet/HtmlRenderer.Core.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<title>HTML Renderer Core</title>
<authors>Arthur Teplitzki</authors>
<owners>Arthur Teplitzki</owners>
<licenseUrl>https://htmlrenderer.codeplex.com/license</licenseUrl>
<projectUrl>https://htmlrenderer.codeplex.com/</projectUrl>
<iconUrl>https://github.com/ArthurHub/HTML-Renderer/blob/master/html.ico?raw=true</iconUrl>
<licenseUrl>https://github.com/ArthurHub/HTML-Renderer/blob/master/LICENSE</licenseUrl>
<projectUrl>https://codeplexarchive.org/project/HtmlRenderer</projectUrl>
<iconUrl>https://raw.githubusercontent.com/ArthurHub/HTML-Renderer/refs/heads/master/html.ico</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>
Cross framework (WinForms/WPF/PDF/Metro/Mono/etc.), Multipurpose (UI Controls / Image generation / PDF generation / etc.), 100% managed (C#), High performance HTML Rendering library.
Expand All @@ -20,7 +20,7 @@
Can be used to create framework specific renderer using adapter extensibility object model.
For existing implementations see: HtmlRenderer.WinForms, HtmlRenderer.WPF and HtmlRenderer.PdfSharp.
</description>
<releaseNotes>See http://htmlrenderer.codeplex.com/releases.</releaseNotes>
<releaseNotes>See https://github.com/ArthurHub/HTML-Renderer/releases.</releaseNotes>
<tags>html render renderer draw core</tags>
</metadata>
<files>
Expand All @@ -34,5 +34,6 @@
<file src="..\Release\Core\net40\HtmlRenderer.pdb" target="lib\net40-client\HtmlRenderer.pdb" />
<file src="..\Release\Core\net45\HtmlRenderer.dll" target="lib\net45\HtmlRenderer.dll" />
<file src="..\Release\Core\net45\HtmlRenderer.pdb" target="lib\net45\HtmlRenderer.pdb" />
<file src="..\..\README.md" target="README.md" />
</files>
</package>
53 changes: 53 additions & 0 deletions Build/NuGet/HtmlRenderer.Mono.README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# Welcome to the HTML Renderer WinForms library!

This library provides the rich formatting power of HTML in Mono .NET applications using
simple controls or static rendering code.
For more info see HTML Renderer on GitHub: https://github.com/ArthurHub/HTML-Renderer

## DEMO APPLICATION

HTML Renderer Demo application showcases HTML Renderer capabilities, use it to explore and learn
on the library: https://codeplexarchive.org/ProjectTab/Wiki/HtmlRenderer/Documentation/Demo%20application

## FEEDBACK / RELEASE NOTES

If you have problems, wish to report a bug, or have a suggestion, please open an issue on the
HTML Renderer issue page: https://github.com/ArthurHub/HTML-Renderer/issues

For full release notes and all versions see: https://github.com/ArthurHub/HTML-Renderer/releases

## QUICK START

For more Quick Start see: https://codeplexarchive.org/ProjectTab/Wiki/HtmlRenderer/Documentation/Documentation

---

## Quick Start: Use HTML panel control on WinForms form

```csharp
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

```csharp
class Program
{
private static void Main(string[] args)
{
Image image = TheArtOfDev.HtmlRenderer.WinForms.HtmlRender.RenderToImageGdiPlus("<p><h1>Hello World</h1>This is html rendered text</p>");
image.Save("image.png", ImageFormat.Png);
}
}
```
10 changes: 5 additions & 5 deletions Build/NuGet/HtmlRenderer.Mono.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<title>HTML Renderer for Mono</title>
<authors>Arthur Teplitzki</authors>
<owners>Arthur Teplitzki</owners>
<licenseUrl>https://htmlrenderer.codeplex.com/license</licenseUrl>
<projectUrl>https://htmlrenderer.codeplex.com/</projectUrl>
<iconUrl>https://github.com/ArthurHub/HTML-Renderer/blob/master/html.ico?raw=true</iconUrl>
<licenseUrl>https://github.com/ArthurHub/HTML-Renderer/blob/master/LICENSE</licenseUrl>
<projectUrl>https://codeplexarchive.org/project/HtmlRenderer</projectUrl>
<iconUrl>https://raw.githubusercontent.com/ArthurHub/HTML-Renderer/refs/heads/master/html.ico</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>
Multipurpose (UI Controls / Image generation), 100% managed (C#), High performance HTML Rendering library for Mono.
Expand All @@ -32,7 +32,7 @@
* High performance and low memory footprint.
* Extendable and configurable.
</description>
<releaseNotes>See http://htmlrenderer.codeplex.com/releases.</releaseNotes>
<releaseNotes>See https://github.com/ArthurHub/HTML-Renderer/releases.</releaseNotes>
<tags>html render renderer draw control winforms mono</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Windows.Forms" targetFramework="" />
Expand All @@ -51,6 +51,6 @@
<file src="..\Release\Mono\net40\HtmlRenderer.WinForms.pdb" target="lib\net40-client\HtmlRenderer.WinForms.pdb" />
<file src="..\Release\Mono\net45\HtmlRenderer.WinForms.dll" target="lib\net45\HtmlRenderer.WinForms.dll" />
<file src="..\Release\Mono\net45\HtmlRenderer.WinForms.pdb" target="lib\net45\HtmlRenderer.WinForms.pdb" />
<file src="HtmlRenderer.Mono.readme.txt" target="readme.txt" />
<file src="HtmlRenderer.Mono.README.md" target="README.md" />
</files>
</package>
50 changes: 0 additions & 50 deletions Build/NuGet/HtmlRenderer.Mono.readme.txt

This file was deleted.

35 changes: 35 additions & 0 deletions Build/NuGet/HtmlRenderer.PdfSharp.README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# 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 GitHub: https://github.com/ArthurHub/HTML-Renderer

## DEMO APPLICATION

HTML Renderer Demo application showcases HTML Renderer capabilities, use it to explore and learn
on the library: https://codeplexarchive.org/ProjectTab/Wiki/HtmlRenderer/Documentation/Demo%20application

## FEEDBACK / RELEASE NOTES

If you have problems, wish to report a bug, or have a suggestion, please open an issue on the
HTML Renderer issue page: https://github.com/ArthurHub/HTML-Renderer/issues

For full release notes and all versions see: https://github.com/ArthurHub/HTML-Renderer/releases

## QUICK START

For more Quick Start see: https://codeplexarchive.org/ProjectTab/Wiki/HtmlRenderer/Documentation/Documentation

---

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

```csharp
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");
}
}
```
10 changes: 5 additions & 5 deletions Build/NuGet/HtmlRenderer.PdfSharp.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<title>HTML Renderer for PDF using PdfSharp</title>
<authors>Arthur Teplitzki</authors>
<owners>Arthur Teplitzki</owners>
<licenseUrl>https://htmlrenderer.codeplex.com/license</licenseUrl>
<projectUrl>https://htmlrenderer.codeplex.com/</projectUrl>
<iconUrl>https://github.com/ArthurHub/HTML-Renderer/blob/master/html.ico?raw=true</iconUrl>
<licenseUrl>https://github.com/ArthurHub/HTML-Renderer/blob/master/LICENSE</licenseUrl>
<projectUrl>https://codeplexarchive.org/project/HtmlRenderer</projectUrl>
<iconUrl>https://raw.githubusercontent.com/ArthurHub/HTML-Renderer/refs/heads/master/html.ico</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>
PDF document generator from HTML snippet, 100% managed (C#), High performance library using PdfSharp.
Expand All @@ -27,7 +27,7 @@
* High performance and low memory footprint.
* Extendable and configurable.
</description>
<releaseNotes>See http://htmlrenderer.codeplex.com/releases.</releaseNotes>
<releaseNotes>See https://github.com/ArthurHub/HTML-Renderer/releases.</releaseNotes>
<tags>html render renderer draw pdfsharp</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Windows.Forms" targetFramework="" />
Expand All @@ -47,6 +47,6 @@
<file src="..\Release\PdfSharp\net40\HtmlRenderer.PdfSharp.pdb" target="lib\net40-client\HtmlRenderer.PdfSharp.pdb" />
<file src="..\Release\PdfSharp\net45\HtmlRenderer.PdfSharp.dll" target="lib\net45\HtmlRenderer.PdfSharp.dll" />
<file src="..\Release\PdfSharp\net45\HtmlRenderer.PdfSharp.pdb" target="lib\net45\HtmlRenderer.PdfSharp.pdb" />
<file src="HtmlRenderer.PdfSharp.readme.txt" target="readme.txt" />
<file src="HtmlRenderer.PdfSharp.README.md" target="README.md" />
</files>
</package>
33 changes: 0 additions & 33 deletions Build/NuGet/HtmlRenderer.PdfSharp.readme.txt

This file was deleted.

53 changes: 53 additions & 0 deletions Build/NuGet/HtmlRenderer.WPF.README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# Welcome to the HTML Renderer WPF library!

This library provides the rich formatting power of HTML in your WPF .NET applications using
simple controls or static rendering code.
For more info see HTML Renderer on GitHub: https://github.com/ArthurHub/HTML-Renderer

## DEMO APPLICATION

HTML Renderer Demo application showcases HTML Renderer capabilities, use it to explore and learn
on the library: https://codeplexarchive.org/ProjectTab/Wiki/HtmlRenderer/Documentation/Demo%20application

## FEEDBACK / RELEASE NOTES

If you have problems, wish to report a bug, or have a suggestion, please open an issue on the
HTML Renderer issue page: https://github.com/ArthurHub/HTML-Renderer/issues

For full release notes and all versions see: https://github.com/ArthurHub/HTML-Renderer/releases

## QUICK START

For more Quick Start see: https://codeplexarchive.org/ProjectTab/Wiki/HtmlRenderer/Documentation/Documentation

---

## Quick Start: Use HTML panel control on WPF window

```xaml
<Window x:Class="Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300"
xmlns:wpf="clr-namespace:TheArtOfDev.HtmlRenderer.WPF;assembly=HtmlRenderer.WPF">
<Grid>
<wpf:HtmlPanel Text="&lt;p&gt; &lt;h1&gt; Hello World &lt;/h1&gt; This is html rendered text&lt;/p&gt;"/>
</Grid>
</Window>
```

## Quick Start: Create image from HTML snippet

```csharp
class Program
{
private static void Main(string[] args)
{
BitmapFrame image = HtmlRender.RenderToImage("<p><h1>Hello World</h1>This is html rendered text</p>");
var encoder = new PngBitmapEncoder();
encoder.Frames.Add(image);
using (FileStream stream = new FileStream("image.png", FileMode.OpenOrCreate))
encoder.Save(stream);
}
}
```
10 changes: 5 additions & 5 deletions Build/NuGet/HtmlRenderer.WPF.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<title>HTML Renderer for WPF</title>
<authors>Arthur Teplitzki</authors>
<owners>Arthur Teplitzki</owners>
<licenseUrl>https://htmlrenderer.codeplex.com/license</licenseUrl>
<projectUrl>https://htmlrenderer.codeplex.com/</projectUrl>
<iconUrl>https://github.com/ArthurHub/HTML-Renderer/blob/master/html.ico?raw=true</iconUrl>
<licenseUrl>https://github.com/ArthurHub/HTML-Renderer/blob/master/LICENSE</licenseUrl>
<projectUrl>https://codeplexarchive.org/project/HtmlRenderer</projectUrl>
<iconUrl>https://raw.githubusercontent.com/ArthurHub/HTML-Renderer/refs/heads/master/html.ico</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>
Multipurpose (UI Controls / Image generation), 100% managed (C#), High performance HTML Rendering library for WPF.
Expand All @@ -32,7 +32,7 @@
* High performance and low memory footprint.
* Extendable and configurable.
</description>
<releaseNotes>See http://htmlrenderer.codeplex.com/releases.</releaseNotes>
<releaseNotes>See https://github.com/ArthurHub/HTML-Renderer/releases.</releaseNotes>
<tags>html render renderer draw control WPF</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Drawing" targetFramework="" />
Expand All @@ -50,6 +50,6 @@
<file src="..\Release\WPF\net40\HtmlRenderer.WPF.pdb" target="lib\net40-client\HtmlRenderer.WPF.pdb" />
<file src="..\Release\WPF\net45\HtmlRenderer.WPF.dll" target="lib\net45\HtmlRenderer.WPF.dll" />
<file src="..\Release\WPF\net45\HtmlRenderer.WPF.pdb" target="lib\net45\HtmlRenderer.WPF.pdb" />
<file src="HtmlRenderer.WPF.readme.txt" target="readme.txt" />
<file src="HtmlRenderer.WPF.README.md" target="README.md" />
</files>
</package>
Loading