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
use crate::bindgen::{
FPDFBitmap_BGR, FPDFBitmap_BGRA, FPDFBitmap_BGRx, FPDFBitmap_Gray, FPDFBitmap_Unknown,
FPDF_BITMAP, FPDF_PAGE,
};
use crate::bindings::PdfiumLibraryBindings;
use crate::PdfiumError;
use image::{DynamicImage, ImageBuffer};
#[derive(Copy, Clone, Debug, PartialEq)]
pub enum PdfBitmapFormat {
Gray = FPDFBitmap_Gray as isize,
BGR = FPDFBitmap_BGR as isize,
BRGx = FPDFBitmap_BGRx as isize,
BGRA = FPDFBitmap_BGRA as isize,
}
impl PdfBitmapFormat {
#[inline]
#[allow(non_upper_case_globals)]
pub(crate) fn from_pdfium(format: u32) -> Result<PdfBitmapFormat, PdfiumError> {
match format {
FPDFBitmap_Unknown => Err(PdfiumError::UnknownBitmapFormat),
FPDFBitmap_Gray => Ok(PdfBitmapFormat::Gray),
FPDFBitmap_BGR => Ok(PdfBitmapFormat::BGR),
FPDFBitmap_BGRx => Ok(PdfBitmapFormat::BRGx),
FPDFBitmap_BGRA => Ok(PdfBitmapFormat::BGRA),
_ => Err(PdfiumError::UnknownBitmapFormat),
}
}
}
#[derive(Copy, Clone, Debug, PartialEq)]
pub enum PdfBitmapRotation {
None,
Degrees90,
Degrees180,
Degrees270,
}
pub struct PdfBitmap<'a> {
width: u16,
height: u16,
format: PdfBitmapFormat,
rotation: PdfBitmapRotation,
bitmap_handle: FPDF_BITMAP,
page_handle: &'a FPDF_PAGE,
is_rendered: bool,
bindings: &'a dyn PdfiumLibraryBindings,
}
impl<'a> PdfBitmap<'a> {
pub(crate) fn from_pdfium(
width: u16,
height: u16,
format: PdfBitmapFormat,
rotation: PdfBitmapRotation,
handle: FPDF_BITMAP,
page: &'a FPDF_PAGE,
bindings: &'a dyn PdfiumLibraryBindings,
) -> Self {
PdfBitmap {
width,
height,
format,
rotation,
bitmap_handle: handle,
page_handle: page,
is_rendered: false,
bindings,
}
}
#[inline]
pub fn width(&self) -> u16 {
self.width
}
#[inline]
pub fn height(&self) -> u16 {
self.height
}
#[inline]
pub fn format(&self) -> PdfBitmapFormat {
self.format
}
pub fn as_image(&mut self) -> DynamicImage {
ImageBuffer::from_raw(
self.width as u32,
self.height as u32,
self.as_bytes().to_owned(),
)
.map(DynamicImage::ImageBgra8)
.unwrap()
}
pub fn as_bytes(&mut self) -> &'a [u8] {
self.render();
let buffer_length = self.bindings.FPDFBitmap_GetStride(self.bitmap_handle)
* self.bindings.FPDFBitmap_GetHeight(self.bitmap_handle);
let buffer_start = self.bindings.FPDFBitmap_GetBuffer(self.bitmap_handle);
unsafe { std::slice::from_raw_parts(buffer_start as *const u8, buffer_length as usize) }
}
pub fn render(&mut self) {
if self.is_rendered {
return;
}
let width = self.width as i32;
let height = self.height as i32;
self.bindings
.FPDFBitmap_FillRect(self.bitmap_handle, 0, 0, width, height, 0xFFFFFFFF);
self.bindings.FPDF_RenderPageBitmap(
self.bitmap_handle,
*self.page_handle,
0,
0,
width,
height,
match self.rotation {
PdfBitmapRotation::None => 0,
PdfBitmapRotation::Degrees90 => 1,
PdfBitmapRotation::Degrees180 => 2,
PdfBitmapRotation::Degrees270 => 3,
},
0,
);
self.is_rendered = true;
}
}
impl<'a> Drop for PdfBitmap<'a> {
#[inline]
fn drop(&mut self) {
self.bindings.FPDFBitmap_Destroy(self.bitmap_handle);
}
}