1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
//! # hyper-render
//!
//! A Chromium-free HTML rendering engine for generating PNG and PDF outputs.
//!
//! This library provides a simple, high-level API for rendering HTML content to
//! images (PNG) or documents (PDF) without requiring a browser or Chromium dependency.
//! It leverages the [Blitz](https://github.com/DioxusLabs/blitz) rendering engine
//! for HTML/CSS parsing and layout.
//!
//! ## Features
//!
//! - **PNG output**: Render HTML to PNG images using CPU-based rendering
//! - **PDF output**: Render HTML to PDF documents with vector graphics
//! - **No browser required**: Pure Rust implementation, no Chromium/WebKit
//! - **CSS support**: Flexbox, Grid, and common CSS properties via Stylo
//!
//! ## Quick Start
//!
//! ```rust,no_run
//! use hyper_render::{render, Config, OutputFormat};
//!
//! let html = r#"
//! <html>
//! <body style="font-family: sans-serif; padding: 20px;">
//! <h1 style="color: navy;">Hello, World!</h1>
//! <p>Rendered without Chromium.</p>
//! </body>
//! </html>
//! "#;
//!
//! // Render to PNG
//! let png_bytes = render(html, Config::default())?;
//! std::fs::write("output.png", png_bytes)?;
//!
//! // Render to PDF
//! let pdf_bytes = render(html, Config::default().format(OutputFormat::Pdf))?;
//! std::fs::write("output.pdf", pdf_bytes)?;
//! # Ok::<(), hyper_render::Error>(())
//! ```
//!
//! ## Configuration
//!
//! Use [`Config`] to customize the rendering:
//!
//! ```rust,no_run
//! use hyper_render::{Config, OutputFormat};
//!
//! let config = Config::new()
//! .width(1200)
//! .height(800)
//! .scale(2.0) // 2x resolution for retina displays
//! .format(OutputFormat::Png);
//! ```
pub use ;
pub use ;
use DocumentConfig;
use HtmlDocument;
use Viewport;
/// Render HTML content to the specified output format.
///
/// This is the main entry point for rendering HTML. It parses the HTML,
/// computes styles and layout, and renders to the format specified in the config.
///
/// # Arguments
///
/// * `html` - The HTML content to render
/// * `config` - Rendering configuration (dimensions, format, scale, etc.)
///
/// # Returns
///
/// Returns the rendered output as bytes (PNG image data or PDF document).
///
/// # Errors
///
/// Returns an error if:
/// - Configuration is invalid (zero dimensions, non-positive scale)
/// - HTML parsing fails
/// - Layout computation fails
/// - Rendering fails
/// - The requested output format feature is not enabled
///
/// # Example
///
/// ```rust,no_run
/// use hyper_render::{render, Config, OutputFormat};
///
/// let html = "<h1>Hello</h1>";
///
/// // PNG output (default)
/// let png = render(html, Config::default())?;
///
/// // PDF output
/// let pdf = render(html, Config::default().format(OutputFormat::Pdf))?;
/// # Ok::<(), hyper_render::Error>(())
/// ```
/// Render HTML content to PNG format.
///
/// Convenience function that renders directly to PNG without needing to specify
/// the format in the config.
///
/// # Example
///
/// ```rust,no_run
/// use hyper_render::{render_to_png, Config};
///
/// let png_bytes = render_to_png("<h1>Hello</h1>", Config::default())?;
/// std::fs::write("output.png", png_bytes)?;
/// # Ok::<(), hyper_render::Error>(())
/// ```
/// Render HTML content to PDF format.
///
/// Convenience function that renders directly to PDF without needing to specify
/// the format in the config.
///
/// # Example
///
/// ```rust,no_run
/// use hyper_render::{render_to_pdf, Config};
///
/// let pdf_bytes = render_to_pdf("<h1>Hello</h1>", Config::default())?;
/// std::fs::write("output.pdf", pdf_bytes)?;
/// # Ok::<(), hyper_render::Error>(())
/// ```
/// Create and configure a Blitz document from HTML.