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
use super::*;
use serde::ser::{SerializeStruct, Serializer};
use serde::Serialize;
use crate::documents::BuildXML;
use crate::xml_builder::*;
#[derive(Debug, Clone, Serialize, PartialEq)]
pub struct Drawing {
pub position_type: DrawingPositionType,
pub position_h: DrawingPosition,
pub position_v: DrawingPosition,
pub data: Option<DrawingData>,
pub children: Vec<DrawingChild>,
}
#[derive(Debug, Clone, Serialize, PartialEq)]
pub enum DrawingData {
Pic(Pic),
}
#[derive(Debug, Clone, PartialEq)]
pub enum DrawingChild {
WpAnchor(WpAnchor),
}
#[derive(Debug, Clone, Serialize, PartialEq)]
pub enum DrawingPositionType {
Anchor,
Inline {
dist_t: usize,
dist_b: usize,
dist_l: usize,
dist_r: usize,
},
}
impl Serialize for DrawingChild {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
match *self {
DrawingChild::WpAnchor(ref s) => {
let mut t = serializer.serialize_struct("WpAnchor", 2)?;
t.serialize_field("type", "anchor")?;
t.serialize_field("data", s)?;
t.end()
}
}
}
}
impl Drawing {
pub fn new() -> Drawing {
Default::default()
}
pub fn add_anchor(mut self, a: WpAnchor) -> Drawing {
self.children.push(DrawingChild::WpAnchor(a));
self
}
pub fn pic(mut self, pic: Pic) -> Drawing {
self.data = Some(DrawingData::Pic(pic));
self
}
pub fn floating(mut self) -> Drawing {
self.position_type = DrawingPositionType::Anchor;
self
}
pub fn position_h(mut self, pos: DrawingPosition) -> Drawing {
self.position_h = pos;
self
}
pub fn position_v(mut self, pos: DrawingPosition) -> Drawing {
self.position_v = pos;
self
}
}
impl Default for Drawing {
fn default() -> Self {
Drawing {
position_type: DrawingPositionType::Inline {
dist_t: 0,
dist_b: 0,
dist_l: 0,
dist_r: 0,
},
data: None,
position_v: DrawingPosition::Offset(0),
position_h: DrawingPosition::Offset(0),
children: vec![],
}
}
}
impl BuildXML for Box<Drawing> {
fn build(&self) -> Vec<u8> {
let b = XMLBuilder::new();
let mut b = b.open_drawing();
if let DrawingPositionType::Inline { .. } = self.position_type {
b = b.open_wp_inline("0", "0", "0", "0")
} else {
b = b
.open_wp_anchor("0", "0", "0", "0", "0", "1", "0", "0", "1", "1905000")
.simple_pos("0", "0")
.open_position_h("page");
if let DrawingPosition::Offset(x) = self.position_h {
let x = format!("{}", crate::types::emu::from_px(x as u32));
b = b.pos_offset(&x).close();
}
b = b.open_position_v("page");
if let DrawingPosition::Offset(y) = self.position_v {
let y = format!("{}", crate::types::emu::from_px(y as u32));
b = b.pos_offset(&y).close();
}
}
match &self.data {
Some(DrawingData::Pic(p)) => {
let w = format!("{}", crate::types::emu::from_px(p.size.0));
let h = format!("{}", crate::types::emu::from_px(p.size.1));
b = b
.wp_extent(&w, &h)
.wp_effect_extent("0", "0", "0", "0")
.wrap_none()
.wp_doc_pr("1", "Figure")
.open_wp_c_nv_graphic_frame_pr()
.a_graphic_frame_locks(
"http://schemas.openxmlformats.org/drawingml/2006/main",
"1",
)
.close()
.open_a_graphic("http://schemas.openxmlformats.org/drawingml/2006/main")
.open_a_graphic_data("http://schemas.openxmlformats.org/drawingml/2006/picture")
.add_child(&p.clone())
.close()
.close();
}
None => {}
}
b.close().close().build()
}
}
#[cfg(test)]
mod tests {
use super::*;
#[cfg(test)]
use pretty_assertions::assert_eq;
use std::str;
#[test]
fn test_drawing_build_with_pic() {
use std::io::Read;
let mut img = std::fs::File::open("../images/cat_min.jpg").unwrap();
let mut buf = Vec::new();
let _ = img.read_to_end(&mut buf).unwrap();
let d = Box::new(Drawing::new().pic(Pic::new(buf))).build();
assert_eq!(
str::from_utf8(&d).unwrap(),
r#"<w:drawing>
<wp:inline distT="0" distB="0" distL="0" distR="0">
<wp:extent cx="3048000" cy="2286000" />
<wp:effectExtent b="0" l="0" r="0" t="0" />
<wp:wrapNone />
<wp:docPr id="1" name="Figure" />
<wp:cNvGraphicFramePr>
<a:graphicFrameLocks xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" noChangeAspect="1" />
</wp:cNvGraphicFramePr>
<a:graphic xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
<a:graphicData uri="http://schemas.openxmlformats.org/drawingml/2006/picture"><pic:pic xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture">
<pic:nvPicPr>
<pic:cNvPr id="0" name="" />
<pic:cNvPicPr>
<a:picLocks noChangeAspect="1" noChangeArrowheads="1" />
</pic:cNvPicPr>
</pic:nvPicPr>
<pic:blipFill>
<a:blip r:embed="rIdImage123" />
<a:srcRect />
<a:stretch>
<a:fillRect />
</a:stretch>
</pic:blipFill>
<pic:spPr bwMode="auto">
<a:xfrm>
<a:off x="0" y="0" />
<a:ext cx="3048000" cy="2286000" />
</a:xfrm>
<a:prstGeom prst="rect">
<a:avLst />
</a:prstGeom>
</pic:spPr>
</pic:pic></a:graphicData>
</a:graphic>
</wp:inline>
</w:drawing>"#
);
}
}