Skip to main content

Graphics

Struct Graphics 

Source
pub struct Graphics { /* private fields */ }
Expand description

Graphics post-processor.

Port of LaTeXML::Post::Graphics.

Implementations§

Source§

impl Graphics

Source

pub fn new(dpi: Option<u32>, trivial_scaling: bool) -> Self

Source

pub fn with_cache_policy(self, policy: CachePolicy) -> Self

Choose whether conversions may be served from the shared, host-persistent graphics cache. Defaults to CachePolicy::Shared.

Pass CachePolicy::Bypass when the conversion itself is what matters — e.g. a test asserting on how many converter subprocesses ran, which a cache hit would silently satisfy without running any. The builder returns self so it composes with Graphics::new(...).

Source

pub fn with_svg_threshold_kb(self, kb: u32) -> Self

Enable the vector-SVG path for PDFs under kb KB. When kb == 0 (default), the SVG path is fully disabled and all PDFs go through ImageMagick convert. The builder returns self so it composes with Graphics::new(...).

Trait Implementations§

Source§

impl Processor for Graphics

Source§

fn get_name(&self) -> &str

Human-readable name for this processor.
Source§

fn to_process(&self, doc: &PostDocument) -> Vec<Node>

Return the nodes to be processed; by default the document element. This allows processors to focus on specific kinds of nodes, or to skip processing if there are none to process.
Source§

fn process(&mut self, doc: PostDocument, nodes: Vec<Node>) -> ProcessResult

Process the document given the nodes returned by to_process. Returns the resulting document(s) — splitting may produce multiple.
Source§

fn resource_directory(&self) -> Option<&str>

Resource directory for generated resources (images, etc.).
Source§

fn resource_prefix(&self) -> Option<&str>

Resource prefix for generated resource filenames.
Source§

fn desired_resource_pathname( &self, _doc: &PostDocument, _node: &Node, _source: Option<&str>, _type_ext: Option<&str>, ) -> Option<PathBuf>

Hint for a desired resource pathname.
Source§

fn generate_resource_pathname( &self, doc: &mut PostDocument, _node: &Node, _source: Option<&str>, type_ext: Option<&str>, ) -> PathBuf

Auto-generate a unique resource pathname using a counter from the doc cache.

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> 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> Same for T

Source§

type Output = T

Should always be Self
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.