micropdf 0.15.15

A pure Rust PDF library - A pure Rust PDF library with fz_/pdf_ API compatibility
1
2
3
4
5
6
//! Page abstraction
use crate::fitz::geometry::Rect;

pub trait Page {
    fn bounds(&self) -> Rect;
}