[][src]Struct printpdf::types::pdf_page::PdfPage

pub struct PdfPage {
    pub width: Pt,
    pub height: Pt,
    pub layers: Vec<PdfLayer>,
    // some fields omitted
}

PDF page

Fields

width: Pt

page width in point

height: Pt

page height in point

layers: Vec<PdfLayer>

Page layers

Implementations

impl PdfPage[src]

pub fn new<S>(
    width: Mm,
    height: Mm,
    layer_name: S,
    page_index: usize
) -> (Self, PdfLayerIndex) where
    S: Into<String>, 
[src]

Create a new page, notice that width / height are in millimeter. Page must contain at least one layer

pub fn add_graphics_state(
    &mut self,
    added_state: ExtendedGraphicsState
) -> ExtendedGraphicsStateRef
[src]

Change the graphics state. Before this operation is done, you should save the graphics state using the save_graphics_state() function. This will change the current graphics state until the end of the page or until the page is reset to the previous state. Returns the old graphics state, in case it was overwritten, as well as a reference to the currently active graphics state

pub fn add_pattern(&mut self, pattern: Pattern) -> PatternRef[src]

STUB: Adds a pattern to the pages resources

pub fn add_xobject(&mut self, xobj: XObject) -> XObjectRef[src]

STUB: Adds an XObject to the pages resources. NOTE: Watch out for scaling. Your XObject might be invisible or only 1pt x 1pt big

Trait Implementations

impl Clone for PdfPage[src]

impl Debug for PdfPage[src]

Auto Trait Implementations

impl RefUnwindSafe for PdfPage

impl Send for PdfPage

impl Sync for PdfPage

impl Unpin for PdfPage

impl UnwindSafe for PdfPage

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.