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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
use crate::bindgen::{FPDFBitmap_BGRA, FPDF_ANNOT, FPDF_BITMAP, FPDF_PAGE, FS_RECTF};
use crate::bindings::PdfiumLibraryBindings;
use crate::bitmap::{PdfBitmap, PdfBitmapRotation};
use crate::bitmap_config::{PdfBitmapConfig, PdfBitmapRenderSettings};
use crate::document::PdfDocument;
use crate::error::{PdfiumError, PdfiumInternalError};
use crate::page_boundaries::PdfPageBoundaries;
use crate::page_size::PdfPagePaperSize;
use crate::pages::PdfPageIndex;
use crate::utils::mem::create_byte_buffer;
use crate::utils::utf16le::get_string_from_pdfium_utf16le_bytes;
use std::ffi::c_void;
use std::os::raw::c_int;
#[derive(Debug, Copy, Clone, PartialEq)]
pub struct PdfPoints {
pub value: f32,
}
impl PdfPoints {
#[inline]
pub const fn new(value: f32) -> Self {
Self { value }
}
#[inline]
pub fn from_inches(inches: f32) -> Self {
Self::new(inches * 72.0)
}
#[inline]
pub fn from_cm(cm: f32) -> Self {
Self::from_inches(cm / 2.54)
}
#[inline]
pub fn from_mm(mm: f32) -> Self {
Self::from_cm(mm / 10.0)
}
#[inline]
pub fn to_inches(&self) -> f32 {
self.value / 72.0
}
#[inline]
pub fn to_cm(&self) -> f32 {
self.to_inches() * 2.54
}
#[inline]
pub fn to_mm(self) -> f32 {
self.to_cm() * 10.0
}
}
#[derive(Debug, Copy, Clone, PartialEq)]
pub struct PdfRect {
pub top: PdfPoints,
pub left: PdfPoints,
pub bottom: PdfPoints,
pub right: PdfPoints,
}
impl PdfRect {
#[inline]
pub(crate) fn from_pdfium(rect: FS_RECTF) -> Self {
Self {
top: PdfPoints::new(rect.top),
left: PdfPoints::new(rect.left),
bottom: PdfPoints::new(rect.bottom),
right: PdfPoints::new(rect.right),
}
}
#[inline]
pub fn new(top: PdfPoints, left: PdfPoints, bottom: PdfPoints, right: PdfPoints) -> Self {
Self {
top,
left,
bottom,
right,
}
}
#[inline]
pub fn new_from_values(top: f32, left: f32, bottom: f32, right: f32) -> Self {
Self::new(
PdfPoints::new(top),
PdfPoints::new(left),
PdfPoints::new(bottom),
PdfPoints::new(right),
)
}
}
#[derive(Copy, Clone, Debug, PartialEq)]
pub enum PdfPageOrientation {
Portrait,
Landscape,
}
impl PdfPageOrientation {
#[inline]
pub(crate) fn from_width_and_height(width: PdfPoints, height: PdfPoints) -> Self {
if width.value > height.value {
PdfPageOrientation::Landscape
} else {
PdfPageOrientation::Portrait
}
}
}
pub struct PdfPage<'a> {
index: PdfPageIndex,
handle: FPDF_PAGE,
document: &'a PdfDocument<'a>,
bindings: &'a dyn PdfiumLibraryBindings,
}
impl<'a> PdfPage<'a> {
#[inline]
pub(crate) fn from_pdfium(
index: PdfPageIndex,
handle: FPDF_PAGE,
document: &'a PdfDocument<'a>,
bindings: &'a dyn PdfiumLibraryBindings,
) -> Self {
PdfPage {
index,
handle,
document,
bindings,
}
}
#[inline]
pub(crate) fn get_handle(&self) -> &FPDF_PAGE {
&self.handle
}
#[inline]
pub fn index(&self) -> PdfPageIndex {
self.index
}
#[inline]
pub fn label(&self) -> Option<String> {
let buffer_length = self.bindings.FPDF_GetPageLabel(
*self.document.get_handle(),
self.index as c_int,
std::ptr::null_mut(),
0,
);
if buffer_length == 0 {
return None;
}
let mut buffer = create_byte_buffer(buffer_length as usize);
let result = self.bindings.FPDF_GetPageLabel(
*self.document.get_handle(),
self.index as c_int,
buffer.as_mut_ptr() as *mut c_void,
buffer_length,
);
assert_eq!(result, buffer_length);
get_string_from_pdfium_utf16le_bytes(buffer)
}
pub fn width(&self) -> PdfPoints {
PdfPoints::new(self.bindings.FPDF_GetPageWidthF(self.handle))
}
pub fn height(&self) -> PdfPoints {
PdfPoints::new(self.bindings.FPDF_GetPageHeightF(self.handle))
}
#[inline]
pub fn orientation(&self) -> PdfPageOrientation {
PdfPageOrientation::from_width_and_height(self.width(), self.height())
}
#[inline]
pub fn is_portrait(&self) -> bool {
self.orientation() == PdfPageOrientation::Portrait
}
#[inline]
pub fn is_landscape(&self) -> bool {
self.orientation() == PdfPageOrientation::Landscape
}
#[inline]
pub fn rotation(&self) -> Result<PdfBitmapRotation, PdfiumError> {
PdfBitmapRotation::from_pdfium(self.bindings.FPDFPage_GetRotation(self.handle))
}
#[inline]
pub fn set_rotation(&mut self, rotation: PdfBitmapRotation) {
self.bindings
.FPDFPage_SetRotation(self.handle, rotation.as_pdfium());
}
#[inline]
pub fn boundaries(&self) -> PdfPageBoundaries {
PdfPageBoundaries::from_pdfium(self, self.bindings)
}
#[inline]
pub fn paper_size(&self) -> PdfPagePaperSize {
PdfPagePaperSize::from_points(self.width(), self.height())
}
#[inline]
pub fn get_bitmap_with_config(
&self,
config: &PdfBitmapConfig,
) -> Result<PdfBitmap, PdfiumError> {
let config = config.apply_to_page(self);
let handle = self.create_empty_bitmap_handle(config.width, config.height, config.format)?;
Ok(PdfBitmap::from_pdfium(
handle,
config,
self,
self.document,
self.bindings,
))
}
pub fn get_bitmap(
&self,
width: u16,
height: u16,
rotation: Option<PdfBitmapRotation>,
) -> Result<PdfBitmap, PdfiumError> {
let handle =
self.create_empty_bitmap_handle(width as i32, height as i32, FPDFBitmap_BGRA as i32)?;
Ok(PdfBitmap::from_pdfium(
handle,
PdfBitmapRenderSettings {
width: width as i32,
height: height as i32,
format: FPDFBitmap_BGRA as i32,
rotate: rotation.unwrap_or(PdfBitmapRotation::None).as_pdfium(),
do_render_form_data: true,
form_field_highlight: vec![],
render_flags: FPDF_ANNOT as i32,
},
self,
self.document,
self.bindings,
))
}
fn create_empty_bitmap_handle(
&self,
width: i32,
height: i32,
format: i32,
) -> Result<FPDF_BITMAP, PdfiumError> {
let handle = self.bindings.FPDFBitmap_CreateEx(
width,
height,
format,
std::ptr::null_mut(),
0,
);
if handle.is_null() {
if let Some(error) = self.bindings.get_pdfium_last_error() {
Err(PdfiumError::PdfiumLibraryInternalError(error))
} else {
Err(PdfiumError::PdfiumLibraryInternalError(
PdfiumInternalError::Unknown,
))
}
} else {
Ok(handle)
}
}
}
impl<'a> Drop for PdfPage<'a> {
#[inline]
fn drop(&mut self) {
self.bindings.FPDF_ClosePage(self.handle);
}
}