-
Notifications
You must be signed in to change notification settings - Fork 539
Update all links #216
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Update all links #216
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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); | ||
| } | ||
| } | ||
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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"); | ||
| } | ||
| } | ||
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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="<p> <h1> Hello World </h1> This is html rendered text</p>"/> | ||
| </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); | ||
| } | ||
| } | ||
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.