[][src]Struct printpdf::types::plugins::graphics::pdf_resources::PdfResources

pub struct PdfResources {
    pub xobjects: XObjectList,
    pub patterns: PatternList,
    pub graphics_states: ExtendedGraphicsStateList,
    pub layers: OCGList,
}

Struct for storing the PDF Resources, to be used on a PDF page

Fields

xobjects: XObjectList

External graphics objects

patterns: PatternList

Patterns used on this page. Do not yet, use, placeholder.

graphics_states: ExtendedGraphicsStateList

Graphics states used on this page

layers: OCGList

Layers / optional content ("Properties") in the resource dictionary

Methods

impl PdfResources[src]

pub fn new() -> Self[src]

Creates a new PdfResources struct (resources for exactly one PDF page)

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

Add a graphics state to the resources

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

Adds an XObject to the page

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

STUB: Adds a pattern to the resources, to be used like a color

pub fn into_with_document_and_layers(
    self,
    doc: &mut Document,
    layers: Vec<Object>
) -> (Dictionary, Vec<OCGRef>)
[src]

See XObject::Into_with_document. The resources also need access to the layers (the optional content groups), this should be a Vec<lopdf::Object::Reference> (to the actual OCG groups, which are added on the document level)

Trait Implementations

impl Clone for PdfResources[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for PdfResources[src]

impl Debug for PdfResources[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.