pdf_writer::writers

Struct SampledFunction

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

Writer for a sampled function stream. PDF 1.2+.

This struct is created by Chunk::sampled_function.

Implementations§

source§

impl<'a> SampledFunction<'a>

source

pub fn domain(&mut self, domain: impl IntoIterator<Item = f32>) -> &mut Self

Write the /Domain attribute to set where the function is defined. Required.

source

pub fn range(&mut self, range: impl IntoIterator<Item = f32>) -> &mut Self

Write the /Range attribute.

Required for sampled and PostScript functions.

source

pub fn size(&mut self, size: impl IntoIterator<Item = i32>) -> &mut Self

Write the /Size attribute.

Sets the number of input samples per dimension. Required.

source

pub fn bits_per_sample(&mut self, bits: i32) -> &mut Self

Write the /BitsPerSample attribute.

Sets the number of bits per input sample. Required.

source

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

Write the /Order attribute.

Choose the implementation kind.

source

pub fn encode(&mut self, encode: impl IntoIterator<Item = f32>) -> &mut Self

Write the /Encode attribute.

For each sample, define how the input is mapped to the domain range.

source

pub fn decode(&mut self, decode: impl IntoIterator<Item = f32>) -> &mut Self

Write the /Decode attribute.

For each sample, define how the output is mapped to the output range.

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

source

pub fn filter(&mut self, filter: Filter) -> &mut Self

Write the /Filter attribute.

source

pub fn decode_parms(&mut self) -> DecodeParms<'_>

Start writing the /DecodeParms attribute.

This is a dictionary that specifies parameters to be used in decoding the stream data using the filter specified by the /Filter attribute.

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

source§

type Target = Stream<'a>

The resulting type after dereferencing.
source§

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

Dereferences the value.
source§

impl<'a> DerefMut for SampledFunction<'a>

source§

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

Mutably dereferences the value.

Auto Trait Implementations§

§

impl<'a> Freeze for SampledFunction<'a>

§

impl<'a> RefUnwindSafe for SampledFunction<'a>

§

impl<'a> Send for SampledFunction<'a>

§

impl<'a> Sync for SampledFunction<'a>

§

impl<'a> Unpin for SampledFunction<'a>

§

impl<'a> !UnwindSafe for SampledFunction<'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>,

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.