Struct pdf_writer::writers::Page

source ·
pub struct Page<'a> { /* private fields */ }
Expand description

Writer for a page dictionary.

This struct is created by Chunk::page.

Implementations§

source§

impl<'a> Page<'a>

source

pub fn parent(&mut self, parent: Ref) -> &mut Self

Write the /Parent attribute. Required.

source

pub fn last_modified(&mut self, date: Date) -> &mut Self

Write the /LastModified attribute. PDF 1.3+.

source

pub fn media_box(&mut self, rect: Rect) -> &mut Self

Write the /MediaBox attribute. This is the size of the physical medium the page gets printed onto.

source

pub fn crop_box(&mut self, rect: Rect) -> &mut Self

Write the /CropBox attribute. This is the size of the area within which content is visible.

source

pub fn bleed_box(&mut self, rect: Rect) -> &mut Self

Write the /BleedBox attribute. This is the size of the area within which content is visible in a print production environment. Most production-aiding marks should be outside of this box. PDF 1.3+.

source

pub fn trim_box(&mut self, rect: Rect) -> &mut Self

Write the /TrimBox attribute. This is the size of the produced document after trimming is applied. PDF 1.3+.

source

pub fn art_box(&mut self, rect: Rect) -> &mut Self

Write the /ArtBox attribute. This is the area that another program importing this file should use. PDF 1.3+.

source

pub fn resources(&mut self) -> Resources<'_>

Start writing the /Resources dictionary.

source

pub fn contents(&mut self, id: Ref) -> &mut Self

Write the /Contents attribute as reference to a single content stream.

Such a content stream can be created using the Content builder and written to the file using Chunk::stream.

source

pub fn contents_array( &mut self, ids: impl IntoIterator<Item = Ref> ) -> &mut Self

Write the /Contents attribute as an array.

source

pub fn rotate(&mut self, degrees: i32) -> &mut Self

Write the /Rotate attribute. This is the number of degrees the page should be rotated clockwise when displayed. This should be a multiple of 90.

source

pub fn group(&mut self) -> Group<'_>

Start writing the /Group dictionary to set the transparency settings for the page. PDF 1.4+.

source

pub fn thumbnail(&mut self, id: Ref) -> &mut Self

Write the /Thumb attribute to set an image as the page thumbnail. Must be RGB, Grayscale, or an indexed color space based on the former two.

source

pub fn duration(&mut self, seconds: f32) -> &mut Self

Write the /Dur attribute. This is the amount of seconds the page should be displayed before advancing to the next one. PDF 1.1+.

source

pub fn transition(&mut self) -> Transition<'_>

Start writing the /Trans dictionary. This sets a transition effect for advancing to the next page. PDF 1.1+.

source

pub fn annotations(&mut self) -> TypedArray<'_, Annotation<'_>>

Start writing the /Annots (annotations) array.’

source

pub fn struct_parents(&mut self, key: i32) -> &mut Self

Write the /StructParents attribute to indicate the structure tree elements the contents of this XObject may belong to. PDF 1.3+.

source

pub fn tab_order(&mut self, order: TabOrder) -> &mut Self

Write the /Tabs attribute. This specifies the order in which the annotations should be focused by hitting tab. PDF 1.5+.

source

pub fn user_unit(&mut self, value: f32) -> &mut Self

Write the /UserUnit attribute. This sets how large a user space unit is in printer’s points (1/72 inch). This defaults to 1.0. PDF 1.6+.

source

pub fn metadata(&mut self, id: Ref) -> &mut Self

Write the /Metadata attribute to specify the page’s metadata. PDF 1.4+.

The reference shall point to a metadata stream.

Methods from Deref<Target = Dict<'a>>§

source

pub fn len(&self) -> i32

The number of written pairs.

source

pub fn is_empty(&self) -> bool

Whether no pairs have been written so far.

source

pub fn insert(&mut self, key: Name<'_>) -> Obj<'_>

Start writing a pair with an arbitrary value.

source

pub fn pair<T: Primitive>(&mut self, key: Name<'_>, value: T) -> &mut Self

Write a pair with a primitive value.

This is a shorthand for dict.insert(key).primitive(value).

source

pub fn pairs<'n, T: Primitive>( &mut self, pairs: impl IntoIterator<Item = (Name<'n>, T)> ) -> &mut Self

Write a sequence of pairs with primitive values.

Trait Implementations§

source§

impl<'a> Deref for Page<'a>

§

type Target = Dict<'a>

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<'a> DerefMut for Page<'a>

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
source§

impl<'a, 'any> Rewrite<'a> for Page<'any>

§

type Output = Page<'a>

The writer with the rewritten lifetime.
source§

impl<'a> Writer<'a> for Page<'a>

source§

fn start(obj: Obj<'a>) -> Self

Start writing the object.

Auto Trait Implementations§

§

impl<'a> Freeze for Page<'a>

§

impl<'a> RefUnwindSafe for Page<'a>

§

impl<'a> Send for Page<'a>

§

impl<'a> Sync for Page<'a>

§

impl<'a> Unpin for Page<'a>

§

impl<'a> !UnwindSafe for Page<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> Finish for T

source§

fn finish(self)

Does nothing but move self, equivalent to drop.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.