pdf_writer::writers

Struct AppearanceCharacteristics

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

Writer for an appearance characteristics dictionary.

This struct is created by Annotation::appearance_characteristics.

Implementations§

source§

impl<'a> AppearanceCharacteristics<'a>

source

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

Write the /R attribute. This is the number of degrees the widget annotation should be rotated by counterclockwise relative to its page when displayed. This should be a multiple of 90.

source

pub fn border_color_transparent(&mut self) -> &mut Self

Write the /BC attribute forcing a transparent color. This sets the widget annotation’s border color.

source

pub fn border_color_gray(&mut self, gray: f32) -> &mut Self

Write the /BC attribute using a grayscale color. This sets the widget annotation’s border color.

source

pub fn border_color_rgb(&mut self, r: f32, g: f32, b: f32) -> &mut Self

Write the /BC attribute using an RGB color. This sets the widget annotation’s border color.

source

pub fn border_color_cymk(&mut self, c: f32, y: f32, m: f32, k: f32) -> &mut Self

Write the /BC attribute using an RGB color. This sets the widget annotation’s border color.

source

pub fn background_color_transparent(&mut self) -> &mut Self

Write the /BG attribute forcing a transparent color. This sets the widget annotation’s background color.

source

pub fn background_color_gray(&mut self, gray: f32) -> &mut Self

Write the /BG attribute using a grayscale color. This sets the widget annotation’s backround color.

source

pub fn background_color_rgb(&mut self, r: f32, g: f32, b: f32) -> &mut Self

Write the /BG attribute using an RGB color. This sets the widget annotation’s backround color.

source

pub fn background_color_cymk( &mut self, c: f32, y: f32, m: f32, k: f32, ) -> &mut Self

Write the /BG attribute using an RGB color. This sets the widget annotation’s backround color.

source

pub fn normal_caption(&mut self, caption: TextStr<'_>) -> &mut Self

Write the /CA attribute. This sets the widget annotation’s normal caption. Only permissible for button fields.

source

pub fn rollover_caption(&mut self, caption: TextStr<'_>) -> &mut Self

Write the /RC attribute. This sets the widget annotation’s rollover (hover) caption. Only permissible for push button fields.

source

pub fn alterante_caption(&mut self, caption: TextStr<'_>) -> &mut Self

Write the /AC attribute. This sets the widget annotation’s alternate (down) caption. Only permissible for push button fields.

source

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

Write the /I attribute. This sets the widget annotation’s normal icon as a reference to a FormXObject. Only permissible for push button fields.

source

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

Write the /RI attribute. This sets the widget annotation’s rollover (hover) icon as a reference to a FormXObject. Only permissible for push button fields.

source

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

Write the /IX attribute. This sets the widget annotation’s alternate (down) icon as a reference to a FormXObject. Only permissible for push button fields.

source

pub fn icon_fit(&mut self) -> IconFit<'_>

Start writing the /IF dictonary. This sets the widget annotation’s icon display characteristics. Only permissible for push button fields.

source

pub fn text_position(&mut self, position: TextPosition) -> &mut Self

Write the /TP attribute. This sets the widget annotation’s caption position relative to the annotation’s icon. Only permissible for push button fields.

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 AppearanceCharacteristics<'a>

source§

type Target = Dict<'a>

The resulting type after dereferencing.
source§

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

Dereferences the value.
source§

impl<'a> DerefMut for AppearanceCharacteristics<'a>

source§

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

Mutably dereferences the value.
source§

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

source§

type Output = AppearanceCharacteristics<'a>

The writer with the rewritten lifetime.
source§

impl<'a> Writer<'a> for AppearanceCharacteristics<'a>

source§

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

Start writing the object.

Auto Trait Implementations§

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>,

source§

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>,

source§

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.