mupdf 0.6.0

Safe Rust wrapper to MuPDF
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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
use std::{
    ffi::{c_int, CString},
    num::NonZero,
    ptr,
};

use bitflags::bitflags;

use mupdf_sys::*;

use crate::{
    context, from_enum, ColorParams, Colorspace, DisplayList, Error, FFIWrapper, IRect, Image,
    Matrix, Path, Pixmap, Rect, Shade, StrokeState, Text, TextPage, TextPageFlags,
};

mod native;
pub use native::NativeDevice;

from_enum! { c_int => c_int,
    #[derive(Debug, Clone, Copy, PartialEq)]
    pub enum BlendMode {
        /* PDF 1.4 -- standard separable */
        Normal = FZ_BLEND_NORMAL,
        Multiply = FZ_BLEND_MULTIPLY,
        Screen = FZ_BLEND_SCREEN,
        Overlay = FZ_BLEND_OVERLAY,
        Darken = FZ_BLEND_DARKEN,
        Lighten = FZ_BLEND_LIGHTEN,
        ColorDodge = FZ_BLEND_COLOR_DODGE,
        ColorBurn = FZ_BLEND_COLOR_BURN,
        HardLight = FZ_BLEND_HARD_LIGHT,
        SoftLight = FZ_BLEND_SOFT_LIGHT,
        Difference = FZ_BLEND_DIFFERENCE,
        Exclusion = FZ_BLEND_EXCLUSION,

        /* PDF 1.4 -- standard non-separable */
        Hue = FZ_BLEND_HUE,
        Saturation = FZ_BLEND_SATURATION,
        Color = FZ_BLEND_COLOR,
        Luminosity = FZ_BLEND_LUMINOSITY,
    }
}

bitflags! {
    pub struct DeviceFlag: u32 {
        const MASK = FZ_DEVFLAG_MASK as _;
        const COLOR = FZ_DEVFLAG_COLOR as _;
        const UNCACHEABLE = FZ_DEVFLAG_UNCACHEABLE as _;
        const FILLCOLOR_UNDEFINED = FZ_DEVFLAG_FILLCOLOR_UNDEFINED as _;
        const STROKECOLOR_UNDEFINED = FZ_DEVFLAG_STROKECOLOR_UNDEFINED as _;
        const STARTCAP_UNDEFINED = FZ_DEVFLAG_STARTCAP_UNDEFINED as _;
        const DASHCAP_UNDEFINED = FZ_DEVFLAG_DASHCAP_UNDEFINED as _;
        const ENDCAP_UNDEFINED = FZ_DEVFLAG_ENDCAP_UNDEFINED as _;
        const LINEJOIN_UNDEFINED = FZ_DEVFLAG_LINEJOIN_UNDEFINED as _;
        const MITERLIMIT_UNDEFINED = FZ_DEVFLAG_MITERLIMIT_UNDEFINED as _;
        const LINEWIDTH_UNDEFINED = FZ_DEVFLAG_LINEWIDTH_UNDEFINED as _;
        const BBOX_DEFINED = FZ_DEVFLAG_BBOX_DEFINED as _;
        const GRIDFIT_AS_TILED = FZ_DEVFLAG_GRIDFIT_AS_TILED as _;
        const DASH_PATTERN_UNDEFINED = FZ_DEVFLAG_DASH_PATTERN_UNDEFINED as _;
    }
}

from_enum! { fz_structure => c_int,
    #[derive(Debug, PartialEq, Eq, Clone, Copy)]
    pub enum Structure {
        Invalid = FZ_STRUCTURE_INVALID,

        /* Grouping elements (PDF 1.7 - Table 10.20) */
        Document = FZ_STRUCTURE_DOCUMENT,
        Part = FZ_STRUCTURE_PART,
        Art = FZ_STRUCTURE_ART,
        Sect = FZ_STRUCTURE_SECT,
        Div = FZ_STRUCTURE_DIV,
        BlockQuote = FZ_STRUCTURE_BLOCKQUOTE,
        Caption = FZ_STRUCTURE_CAPTION,
        TOC = FZ_STRUCTURE_TOC,
        TOCI = FZ_STRUCTURE_TOCI,
        Index = FZ_STRUCTURE_INDEX,
        NonStruct = FZ_STRUCTURE_NONSTRUCT,
        Private = FZ_STRUCTURE_PRIVATE,
        /* Grouping elements (PDF 2.0 - Table 364) */
        DocumentFragment = FZ_STRUCTURE_DOCUMENTFRAGMENT,
        /* Grouping elements (PDF 2.0 - Table 365) */
        Aside = FZ_STRUCTURE_ASIDE,
        /* Grouping elements (PDF 2.0 - Table 366) */
        Title = FZ_STRUCTURE_TITLE,
        FENote = FZ_STRUCTURE_FENOTE,
        /* Grouping elements (PDF 2.0 - Table 367) */
        Sub = FZ_STRUCTURE_SUB,

        /* Paragraphlike elements (PDF 1.7 - Table 10.21) */
        P = FZ_STRUCTURE_P,
        H = FZ_STRUCTURE_H,
        H1 = FZ_STRUCTURE_H1,
        H2 = FZ_STRUCTURE_H2,
        H3 = FZ_STRUCTURE_H3,
        H4 = FZ_STRUCTURE_H4,
        H5 = FZ_STRUCTURE_H5,
        H6 = FZ_STRUCTURE_H6,

        /* List elements (PDF 1.7 - Table 10.23) */
        List = FZ_STRUCTURE_LIST,
        ListItem = FZ_STRUCTURE_LISTITEM,
        Label = FZ_STRUCTURE_LABEL,
        ListBody = FZ_STRUCTURE_LISTBODY,

        /* Table elements (PDF 1.7 - Table 10.24) */
        Table = FZ_STRUCTURE_TABLE,
        TR = FZ_STRUCTURE_TR,
        TH = FZ_STRUCTURE_TH,
        TD = FZ_STRUCTURE_TD,
        THead = FZ_STRUCTURE_THEAD,
        TBody = FZ_STRUCTURE_TBODY,
        TFoot = FZ_STRUCTURE_TFOOT,

        /* Inline elements (PDF 1.7 - Table 10.25) */
        Span = FZ_STRUCTURE_SPAN,
        Quote = FZ_STRUCTURE_QUOTE,
        Note = FZ_STRUCTURE_NOTE,
        Reference = FZ_STRUCTURE_REFERENCE,
        BibEntry = FZ_STRUCTURE_BIBENTRY,
        Code = FZ_STRUCTURE_CODE,
        Link = FZ_STRUCTURE_LINK,
        Annot = FZ_STRUCTURE_ANNOT,
        /* Inline elements (PDF 2.0 - Table 368) */
        Em = FZ_STRUCTURE_EM,
        Strong = FZ_STRUCTURE_STRONG,

        /* Ruby inline element (PDF 1.7 - Table 10.26) */
        Ruby = FZ_STRUCTURE_RUBY,
        RB = FZ_STRUCTURE_RB,
        RT = FZ_STRUCTURE_RT,
        RP = FZ_STRUCTURE_RP,

        /* Warichu inline element (PDF 1.7 - Table 10.26) */
        Warichu = FZ_STRUCTURE_WARICHU,
        WT = FZ_STRUCTURE_WT,
        WP = FZ_STRUCTURE_WP,

        /* Illustration elements (PDF 1.7 - Table 10.27) */
        Figure = FZ_STRUCTURE_FIGURE,
        Formula = FZ_STRUCTURE_FORMULA,
        Form = FZ_STRUCTURE_FORM,

        /* Artifact structure type (PDF 2.0 - Table 375) */
        Artifact = FZ_STRUCTURE_ARTIFACT,
    }
}

from_enum! { fz_metatext => fz_metatext,
    #[derive(Debug, PartialEq, Eq, Clone, Copy)]
    pub enum Metatext {
        ActualText = FZ_METATEXT_ACTUALTEXT,
        Alt = FZ_METATEXT_ALT,
        Abbreviation = FZ_METATEXT_ABBREVIATION,
        Title = FZ_METATEXT_TITLE,
    }
}

pub struct DefaultColorspaces {
    pub(crate) inner: *mut fz_default_colorspaces,
}

impl Drop for DefaultColorspaces {
    fn drop(&mut self) {
        unsafe { fz_drop_default_colorspaces(context(), self.inner) }
    }
}

pub struct Function {
    pub(crate) inner: *mut fz_function,
}

impl Drop for Function {
    fn drop(&mut self) {
        unsafe { fz_drop_function(context(), self.inner) }
    }
}

#[derive(Debug)]
pub struct Device {
    pub(crate) dev: *mut fz_device,
    pub(crate) list: *mut fz_display_list,
}

impl Device {
    pub(crate) unsafe fn from_raw(dev: *mut fz_device, list: *mut fz_display_list) -> Self {
        Self { dev, list }
    }

    pub fn from_native<D: NativeDevice>(device: D) -> Result<Self, Error> {
        native::create(device)
    }

    pub fn from_pixmap_with_clip(pixmap: &Pixmap, clip: IRect) -> Result<Self, Error> {
        unsafe { ffi_try!(mupdf_new_draw_device(context(), pixmap.inner, clip.into())) }.map(
            |dev| Self {
                dev,
                list: ptr::null_mut(),
            },
        )
    }

    pub fn from_pixmap(pixmap: &Pixmap) -> Result<Self, Error> {
        Self::from_pixmap_with_clip(pixmap, IRect::INF)
    }

    pub fn from_display_list(list: &DisplayList) -> Result<Self, Error> {
        unsafe { ffi_try!(mupdf_new_display_list_device(context(), list.inner)) }.map(|dev| Self {
            dev,
            list: list.inner,
        })
    }

    pub fn from_text_page(page: &TextPage, opts: TextPageFlags) -> Result<Self, Error> {
        unsafe {
            ffi_try!(mupdf_new_stext_device(
                context(),
                page.as_ptr().cast_mut(),
                opts.bits() as _
            ))
        }
        .map(|dev| Self {
            dev,
            list: ptr::null_mut(),
        })
    }

    /// The colors in `color` must match the colorspace `cs`, as described in
    /// [`Colorspace::convert_color`]
    #[allow(clippy::too_many_arguments)]
    pub fn fill_path(
        &self,
        path: &Path,
        even_odd: bool,
        ctm: &Matrix,
        cs: &Colorspace,
        color: &[f32],
        alpha: f32,
        cp: ColorParams,
    ) -> Result<(), Error> {
        unsafe {
            ffi_try!(mupdf_fill_path(
                context(),
                self.dev,
                path.inner,
                even_odd,
                ctm.into(),
                cs.inner,
                color.as_ptr(),
                alpha,
                cp.into()
            ))
        }
    }

    /// The colors in `color` must match the colorspace `cs`, as described in
    /// [`Colorspace::convert_color`]
    #[allow(clippy::too_many_arguments)]
    pub fn stroke_path(
        &self,
        path: &Path,
        stroke: &StrokeState,
        ctm: &Matrix,
        cs: &Colorspace,
        color: &[f32],
        alpha: f32,
        cp: ColorParams,
    ) -> Result<(), Error> {
        unsafe {
            ffi_try!(mupdf_stroke_path(
                context(),
                self.dev,
                path.inner,
                stroke.inner,
                ctm.into(),
                cs.inner,
                color.as_ptr(),
                alpha,
                cp.into()
            ))
        }
    }

    pub fn clip_path(&self, path: &Path, even_odd: bool, ctm: &Matrix) -> Result<(), Error> {
        unsafe {
            ffi_try!(mupdf_clip_path(
                context(),
                self.dev,
                path.inner,
                even_odd,
                ctm.into()
            ))
        }
    }

    pub fn clip_stroke_path(
        &self,
        path: &Path,
        stroke: &StrokeState,
        ctm: &Matrix,
    ) -> Result<(), Error> {
        unsafe {
            ffi_try!(mupdf_clip_stroke_path(
                context(),
                self.dev,
                path.inner,
                stroke.inner,
                ctm.into()
            ))
        }
    }

    /// The colors in `color` must match the colorspace `cs`, as described in
    /// [`Colorspace::convert_color`]
    pub fn fill_text(
        &self,
        text: &Text,
        ctm: &Matrix,
        cs: &Colorspace,
        color: &[f32],
        alpha: f32,
        cp: ColorParams,
    ) -> Result<(), Error> {
        unsafe {
            ffi_try!(mupdf_fill_text(
                context(),
                self.dev,
                text.inner,
                ctm.into(),
                cs.inner,
                color.as_ptr(),
                alpha,
                cp.into()
            ))
        }
    }

    /// The colors in `color` must match the colorspace `cs`, as described in
    /// [`Colorspace::convert_color`]
    #[allow(clippy::too_many_arguments)]
    pub fn stroke_text(
        &self,
        text: &Text,
        stroke: &StrokeState,
        ctm: &Matrix,
        cs: &Colorspace,
        color: &[f32],
        alpha: f32,
        cp: ColorParams,
    ) -> Result<(), Error> {
        unsafe {
            ffi_try!(mupdf_stroke_text(
                context(),
                self.dev,
                text.inner,
                stroke.inner,
                ctm.into(),
                cs.inner,
                color.as_ptr(),
                alpha,
                cp.into()
            ))
        }
    }

    pub fn clip_text(&self, text: &Text, ctm: &Matrix) -> Result<(), Error> {
        unsafe { ffi_try!(mupdf_clip_text(context(), self.dev, text.inner, ctm.into())) }
    }

    pub fn clip_stroke_text(
        &self,
        text: &Text,
        stroke: &StrokeState,
        ctm: &Matrix,
    ) -> Result<(), Error> {
        unsafe {
            ffi_try!(mupdf_clip_stroke_text(
                context(),
                self.dev,
                text.inner,
                stroke.inner,
                ctm.into()
            ))
        }
    }

    pub fn ignore_text(&self, text: &Text, ctm: &Matrix) -> Result<(), Error> {
        unsafe {
            ffi_try!(mupdf_ignore_text(
                context(),
                self.dev,
                text.inner,
                ctm.into()
            ))
        }
    }

    pub fn fill_shade(
        &self,
        shd: &Shade,
        ctm: &Matrix,
        alpha: f32,
        cp: ColorParams,
    ) -> Result<(), Error> {
        unsafe {
            ffi_try!(mupdf_fill_shade(
                context(),
                self.dev,
                shd.inner,
                ctm.into(),
                alpha,
                cp.into()
            ))
        }
    }

    pub fn fill_image(
        &self,
        image: &Image,
        ctm: &Matrix,
        alpha: f32,
        cp: ColorParams,
    ) -> Result<(), Error> {
        unsafe {
            ffi_try!(mupdf_fill_image(
                context(),
                self.dev,
                image.inner,
                ctm.into(),
                alpha,
                cp.into()
            ))
        }
    }

    /// The colors in `color` must match the colorspace `cs`, as described in
    /// [`Colorspace::convert_color`]
    pub fn fill_image_mask(
        &self,
        image: &Image,
        ctm: &Matrix,
        cs: &Colorspace,
        color: &[f32],
        alpha: f32,
        cp: ColorParams,
    ) -> Result<(), Error> {
        unsafe {
            ffi_try!(mupdf_fill_image_mask(
                context(),
                self.dev,
                image.inner,
                ctm.into(),
                cs.inner,
                color.as_ptr(),
                alpha,
                cp.into()
            ))
        }
    }

    pub fn clip_image_mask(&self, image: &Image, ctm: &Matrix) -> Result<(), Error> {
        unsafe {
            ffi_try!(mupdf_clip_image_mask(
                context(),
                self.dev,
                image.inner,
                ctm.into()
            ))
        }
    }

    pub fn pop_clip(&self) -> Result<(), Error> {
        unsafe { ffi_try!(mupdf_pop_clip(context(), self.dev)) }
    }

    pub fn begin_mask(
        &self,
        area: Rect,
        luminosity: bool,
        cs: &Colorspace,
        bc: &[f32],
        cp: ColorParams,
    ) -> Result<(), Error> {
        unsafe {
            ffi_try!(mupdf_begin_mask(
                context(),
                self.dev,
                area.into(),
                luminosity,
                cs.inner,
                bc.as_ptr(),
                cp.into()
            ))
        }
    }

    pub fn end_mask(&self, f: Option<&Function>) -> Result<(), Error> {
        unsafe {
            ffi_try!(mupdf_end_mask(
                context(),
                self.dev,
                f.map_or(ptr::null_mut(), |f| f.inner)
            ))
        }
    }

    pub fn begin_group(
        &self,
        area: Rect,
        cs: &Colorspace,
        isolated: bool,
        knockout: bool,
        blend_mode: BlendMode,
        alpha: f32,
    ) -> Result<(), Error> {
        unsafe {
            ffi_try!(mupdf_begin_group(
                context(),
                self.dev,
                area.into(),
                cs.inner,
                isolated,
                knockout,
                blend_mode.into(),
                alpha
            ))
        }
    }

    pub fn end_group(&self) -> Result<(), Error> {
        unsafe { ffi_try!(mupdf_end_group(context(), self.dev)) }
    }

    #[allow(clippy::too_many_arguments)]
    pub fn begin_tile(
        &self,
        area: Rect,
        view: Rect,
        xstep: f32,
        ystep: f32,
        ctm: &Matrix,
        id: Option<NonZero<i32>>,
        doc_id: Option<NonZero<i32>>,
    ) -> Result<Option<NonZero<i32>>, Error> {
        unsafe {
            ffi_try!(mupdf_begin_tile(
                context(),
                self.dev,
                area.into(),
                view.into(),
                xstep,
                ystep,
                ctm.into(),
                id.map_or(0, NonZero::get),
                doc_id.map_or(0, NonZero::get)
            ))
        }
        .map(NonZero::new)
    }

    pub fn end_tile(&self) -> Result<(), Error> {
        unsafe { ffi_try!(mupdf_end_tile(context(), self.dev)) }
    }

    pub fn begin_layer(&self, name: &str) -> Result<(), Error> {
        let c_name = CString::new(name)?;
        unsafe { ffi_try!(mupdf_begin_layer(context(), self.dev, c_name.as_ptr())) }
    }

    pub fn end_layer(&self) -> Result<(), Error> {
        unsafe { ffi_try!(mupdf_end_layer(context(), self.dev)) }
    }

    pub fn begin_structure(&self, standard: Structure, raw: &str, idx: i32) -> Result<(), Error> {
        let c_raw = CString::new(raw)?;
        unsafe {
            ffi_try!(mupdf_begin_structure(
                context(),
                self.dev,
                standard.into(),
                c_raw.as_ptr(),
                idx
            ))
        }
    }

    pub fn end_structure(&self) -> Result<(), Error> {
        unsafe { ffi_try!(mupdf_end_structure(context(), self.dev)) }
    }

    pub fn begin_metatext(&self, meta: Metatext, text: &str) -> Result<(), Error> {
        let c_text = CString::new(text)?;
        unsafe {
            ffi_try!(mupdf_begin_metatext(
                context(),
                self.dev,
                meta.into(),
                c_text.as_ptr()
            ))
        }
    }

    pub fn end_metatext(&self) -> Result<(), Error> {
        unsafe { ffi_try!(mupdf_end_metatext(context(), self.dev)) }
    }
}

impl Drop for Device {
    fn drop(&mut self) {
        if !self.dev.is_null() {
            unsafe {
                fz_close_device(context(), self.dev);
                fz_drop_device(context(), self.dev);
            }
        }
        if !self.list.is_null() {
            unsafe {
                fz_drop_display_list(context(), self.list);
            }
        }
    }
}

#[cfg(test)]
mod test {
    use crate::{Colorspace, Device, DisplayList, Pixmap, Rect};

    #[test]
    fn test_new_device_from_pixmap() {
        let cs = Colorspace::device_rgb();
        let mut pixmap = Pixmap::new_with_w_h(&cs, 100, 100, false).expect("Pixmap::new_with_w_h");
        pixmap.clear().unwrap();
        let _device = Device::from_pixmap(&pixmap).unwrap();
    }

    #[test]
    fn test_new_device_from_display_list() {
        let list = DisplayList::new(Rect::new(0.0, 0.0, 100.0, 100.0)).unwrap();
        let _device = Device::from_display_list(&list).unwrap();
    }
}