oxidize-pdf 2.5.0

A pure Rust PDF generation and manipulation library with zero external dependencies
Documentation
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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
//! Page-level forms API
//!
//! This module provides a simpler API for adding working form fields to pages

use crate::annotations::{Annotation, AnnotationType};
use crate::error::Result;
use crate::forms::{
    create_checkbox_dict, create_combo_box_dict, create_list_box_dict, create_push_button_dict,
    create_radio_button_dict, create_text_field_dict,
};
use crate::geometry::Rectangle;
use crate::page::Page;

/// Extension trait for Page to add form fields easily
pub trait PageForms {
    /// Add a text field to the page
    fn add_text_field(
        &mut self,
        name: &str,
        rect: Rectangle,
        default_value: Option<&str>,
    ) -> Result<()>;

    /// Add a checkbox to the page
    fn add_checkbox(&mut self, name: &str, rect: Rectangle, checked: bool) -> Result<()>;

    /// Add a radio button to the page
    fn add_radio_button(
        &mut self,
        name: &str,
        rect: Rectangle,
        export_value: &str,
        checked: bool,
    ) -> Result<()>;

    /// Add a combo box (dropdown) to the page
    fn add_combo_box(
        &mut self,
        name: &str,
        rect: Rectangle,
        options: Vec<(&str, &str)>,
        default_value: Option<&str>,
    ) -> Result<()>;

    /// Add a list box to the page
    fn add_list_box(
        &mut self,
        name: &str,
        rect: Rectangle,
        options: Vec<(&str, &str)>,
        selected: Vec<usize>,
        multi_select: bool,
    ) -> Result<()>;

    /// Add a push button to the page
    fn add_push_button(&mut self, name: &str, rect: Rectangle, caption: &str) -> Result<()>;
}

impl PageForms for Page {
    fn add_text_field(
        &mut self,
        name: &str,
        rect: Rectangle,
        default_value: Option<&str>,
    ) -> Result<()> {
        // Create the field dictionary
        let field_dict = create_text_field_dict(name, rect, default_value);

        // Create annotation with the field properties
        let mut annotation = Annotation::new(AnnotationType::Widget, rect);
        for (key, value) in field_dict.entries() {
            annotation.properties.set(key, value.clone());
        }

        // Add to page
        self.annotations_mut().push(annotation);

        Ok(())
    }

    fn add_checkbox(&mut self, name: &str, rect: Rectangle, checked: bool) -> Result<()> {
        // Create the field dictionary
        let field_dict = create_checkbox_dict(name, rect, checked);

        // Create annotation with the field properties
        let mut annotation = Annotation::new(AnnotationType::Widget, rect);
        for (key, value) in field_dict.entries() {
            annotation.properties.set(key, value.clone());
        }

        // Add to page
        self.annotations_mut().push(annotation);

        Ok(())
    }

    fn add_radio_button(
        &mut self,
        name: &str,
        rect: Rectangle,
        export_value: &str,
        checked: bool,
    ) -> Result<()> {
        // Create the field dictionary
        let field_dict = create_radio_button_dict(name, rect, export_value, checked);

        // Create annotation with the field properties
        let mut annotation = Annotation::new(AnnotationType::Widget, rect);
        for (key, value) in field_dict.entries() {
            annotation.properties.set(key, value.clone());
        }

        // Add to page
        self.annotations_mut().push(annotation);

        Ok(())
    }

    fn add_combo_box(
        &mut self,
        name: &str,
        rect: Rectangle,
        options: Vec<(&str, &str)>,
        default_value: Option<&str>,
    ) -> Result<()> {
        // Create the field dictionary
        let field_dict = create_combo_box_dict(name, rect, options, default_value);

        // Create annotation with the field properties
        let mut annotation = Annotation::new(AnnotationType::Widget, rect);
        for (key, value) in field_dict.entries() {
            annotation.properties.set(key, value.clone());
        }

        // Add to page
        self.annotations_mut().push(annotation);

        Ok(())
    }

    fn add_list_box(
        &mut self,
        name: &str,
        rect: Rectangle,
        options: Vec<(&str, &str)>,
        selected: Vec<usize>,
        multi_select: bool,
    ) -> Result<()> {
        // Create the field dictionary
        let field_dict = create_list_box_dict(name, rect, options, selected, multi_select);

        // Create annotation with the field properties
        let mut annotation = Annotation::new(AnnotationType::Widget, rect);
        for (key, value) in field_dict.entries() {
            annotation.properties.set(key, value.clone());
        }

        // Add to page
        self.annotations_mut().push(annotation);

        Ok(())
    }

    fn add_push_button(&mut self, name: &str, rect: Rectangle, caption: &str) -> Result<()> {
        // Create the field dictionary
        let field_dict = create_push_button_dict(name, rect, caption);

        // Create annotation with the field properties
        let mut annotation = Annotation::new(AnnotationType::Widget, rect);
        for (key, value) in field_dict.entries() {
            annotation.properties.set(key, value.clone());
        }

        // Add to page
        self.annotations_mut().push(annotation);

        Ok(())
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::geometry::{Point, Rectangle};
    use crate::page::Page;

    #[test]
    fn test_add_text_field() {
        let mut page = Page::a4();
        let rect = Rectangle::new(Point::new(100.0, 700.0), Point::new(300.0, 720.0));

        let result = page.add_text_field("name", rect, Some("John Doe"));
        assert!(result.is_ok());

        // Verify annotation was added
        assert_eq!(page.annotations().len(), 1);
    }

    #[test]
    fn test_add_text_field_without_default() {
        let mut page = Page::a4();
        let rect = Rectangle::new(Point::new(100.0, 650.0), Point::new(300.0, 670.0));

        let result = page.add_text_field("email", rect, None);
        assert!(result.is_ok());
        assert_eq!(page.annotations().len(), 1);
    }

    #[test]
    fn test_add_checkbox() {
        let mut page = Page::a4();
        let rect = Rectangle::new(Point::new(100.0, 600.0), Point::new(120.0, 620.0));

        let result = page.add_checkbox("agree", rect, true);
        assert!(result.is_ok());
        assert_eq!(page.annotations().len(), 1);
    }

    #[test]
    fn test_add_checkbox_unchecked() {
        let mut page = Page::a4();
        let rect = Rectangle::new(Point::new(100.0, 550.0), Point::new(120.0, 570.0));

        let result = page.add_checkbox("subscribe", rect, false);
        assert!(result.is_ok());
        assert_eq!(page.annotations().len(), 1);
    }

    #[test]
    fn test_add_radio_button() {
        let mut page = Page::a4();
        let rect = Rectangle::new(Point::new(100.0, 500.0), Point::new(120.0, 520.0));

        let result = page.add_radio_button("gender", rect, "male", true);
        assert!(result.is_ok());
        assert_eq!(page.annotations().len(), 1);
    }

    #[test]
    fn test_add_multiple_radio_buttons() {
        let mut page = Page::a4();

        let rect1 = Rectangle::new(Point::new(100.0, 450.0), Point::new(120.0, 470.0));
        let rect2 = Rectangle::new(Point::new(150.0, 450.0), Point::new(170.0, 470.0));
        let rect3 = Rectangle::new(Point::new(200.0, 450.0), Point::new(220.0, 470.0));

        assert!(page.add_radio_button("size", rect1, "small", false).is_ok());
        assert!(page.add_radio_button("size", rect2, "medium", true).is_ok());
        assert!(page.add_radio_button("size", rect3, "large", false).is_ok());

        assert_eq!(page.annotations().len(), 3);
    }

    #[test]
    fn test_add_combo_box() {
        let mut page = Page::a4();
        let rect = Rectangle::new(Point::new(100.0, 400.0), Point::new(250.0, 420.0));

        let options = vec![("US", "United States"), ("CA", "Canada"), ("MX", "Mexico")];

        let result = page.add_combo_box("country", rect, options, Some("US"));
        assert!(result.is_ok());
        assert_eq!(page.annotations().len(), 1);
    }

    #[test]
    fn test_add_combo_box_no_default() {
        let mut page = Page::a4();
        let rect = Rectangle::new(Point::new(100.0, 350.0), Point::new(250.0, 370.0));

        let options = vec![("red", "Red"), ("green", "Green"), ("blue", "Blue")];

        let result = page.add_combo_box("color", rect, options, None);
        assert!(result.is_ok());
        assert_eq!(page.annotations().len(), 1);
    }

    #[test]
    fn test_add_list_box() {
        let mut page = Page::a4();
        let rect = Rectangle::new(Point::new(100.0, 250.0), Point::new(250.0, 330.0));

        let options = vec![
            ("item1", "First Item"),
            ("item2", "Second Item"),
            ("item3", "Third Item"),
            ("item4", "Fourth Item"),
        ];

        let result = page.add_list_box("items", rect, options, vec![1], false);
        assert!(result.is_ok());
        assert_eq!(page.annotations().len(), 1);
    }

    #[test]
    fn test_add_list_box_multiple_selection() {
        let mut page = Page::a4();
        let rect = Rectangle::new(Point::new(100.0, 150.0), Point::new(250.0, 230.0));

        let options = vec![
            ("opt1", "Option 1"),
            ("opt2", "Option 2"),
            ("opt3", "Option 3"),
        ];

        let result = page.add_list_box("multi_select", rect, options, vec![0, 2], true);
        assert!(result.is_ok());
        assert_eq!(page.annotations().len(), 1);
    }

    #[test]
    fn test_add_push_button() {
        let mut page = Page::a4();
        let rect = Rectangle::new(Point::new(100.0, 100.0), Point::new(200.0, 130.0));

        let result = page.add_push_button("submit", rect, "Submit");
        assert!(result.is_ok());
        assert_eq!(page.annotations().len(), 1);
    }

    #[test]
    fn test_add_multiple_form_fields() {
        let mut page = Page::a4();

        // Add various form fields
        let text_rect = Rectangle::new(Point::new(100.0, 700.0), Point::new(300.0, 720.0));
        assert!(page
            .add_text_field("name", text_rect, Some("Enter name"))
            .is_ok());

        let check_rect = Rectangle::new(Point::new(100.0, 650.0), Point::new(120.0, 670.0));
        assert!(page.add_checkbox("agree", check_rect, false).is_ok());

        let combo_rect = Rectangle::new(Point::new(100.0, 600.0), Point::new(250.0, 620.0));
        let options = vec![("opt1", "Option 1"), ("opt2", "Option 2")];
        assert!(page
            .add_combo_box("choice", combo_rect, options, None)
            .is_ok());

        let button_rect = Rectangle::new(Point::new(100.0, 550.0), Point::new(200.0, 580.0));
        assert!(page
            .add_push_button("submit", button_rect, "Submit")
            .is_ok());

        // Verify all annotations were added
        assert_eq!(page.annotations().len(), 4);
    }

    #[test]
    fn test_field_positioning() {
        let mut page = Page::a4();

        // Test different positions
        let top_rect = Rectangle::new(Point::new(50.0, 750.0), Point::new(150.0, 770.0));
        let middle_rect = Rectangle::new(Point::new(200.0, 400.0), Point::new(300.0, 420.0));
        let bottom_rect = Rectangle::new(Point::new(350.0, 50.0), Point::new(450.0, 70.0));

        assert!(page.add_text_field("top", top_rect, None).is_ok());
        assert!(page.add_text_field("middle", middle_rect, None).is_ok());
        assert!(page.add_text_field("bottom", bottom_rect, None).is_ok());

        assert_eq!(page.annotations().len(), 3);
    }

    #[test]
    fn test_empty_options_list() {
        let mut page = Page::a4();
        let rect = Rectangle::new(Point::new(100.0, 400.0), Point::new(250.0, 420.0));

        let options: Vec<(&str, &str)> = vec![];

        // Empty options should still create the field
        let result = page.add_combo_box("empty_combo", rect, options, None);
        assert!(result.is_ok());
    }

    #[test]
    fn test_special_characters_in_names() {
        let mut page = Page::a4();
        let rect = Rectangle::new(Point::new(100.0, 400.0), Point::new(250.0, 420.0));

        // Test with special characters in field names
        assert!(page.add_text_field("field.with.dots", rect, None).is_ok());

        let rect2 = Rectangle::new(Point::new(100.0, 350.0), Point::new(250.0, 370.0));
        assert!(page
            .add_text_field("field-with-dashes", rect2, None)
            .is_ok());

        let rect3 = Rectangle::new(Point::new(100.0, 300.0), Point::new(250.0, 320.0));
        assert!(page
            .add_text_field("field_with_underscores", rect3, None)
            .is_ok());

        assert_eq!(page.annotations().len(), 3);
    }

    #[test]
    fn test_overlapping_fields() {
        let mut page = Page::a4();

        // Create overlapping rectangles
        let rect1 = Rectangle::new(Point::new(100.0, 400.0), Point::new(200.0, 420.0));
        let rect2 = Rectangle::new(Point::new(150.0, 410.0), Point::new(250.0, 430.0));

        // Both should be added successfully despite overlap
        assert!(page.add_text_field("field1", rect1, None).is_ok());
        assert!(page.add_text_field("field2", rect2, None).is_ok());

        assert_eq!(page.annotations().len(), 2);
    }

    #[test]
    fn test_large_text_in_fields() {
        let mut page = Page::a4();
        let rect = Rectangle::new(Point::new(100.0, 400.0), Point::new(300.0, 420.0));

        let long_text = "This is a very long text that might not fit completely in the field but should still be accepted as default value";

        let result = page.add_text_field("long_text", rect, Some(long_text));
        assert!(result.is_ok());
    }

    #[test]
    fn test_unicode_in_field_values() {
        let mut page = Page::a4();
        let rect = Rectangle::new(Point::new(100.0, 400.0), Point::new(300.0, 420.0));

        // Test with unicode characters
        let unicode_text = "日本語 العربية Ñoño";
        let result = page.add_text_field("unicode_field", rect, Some(unicode_text));
        assert!(result.is_ok());

        // Test with emoji
        let emoji_text = "Hello 👋 World 🌍";
        let rect2 = Rectangle::new(Point::new(100.0, 350.0), Point::new(300.0, 370.0));
        let result2 = page.add_text_field("emoji_field", rect2, Some(emoji_text));
        assert!(result2.is_ok());

        assert_eq!(page.annotations().len(), 2);
    }
}