Struct jxl_oxide::Frame

source ·
pub struct Frame { /* private fields */ }
Expand description

JPEG XL frame.

A frame represents a single unit of image that can be displayed or referenced by other frames.

Implementations§

source§

impl Frame

source

pub fn alloc_tracker(&self) -> Option<&AllocTracker>

source

pub fn image_header(&self) -> &ImageHeader

source

pub fn clone_image_header(&self) -> Arc<ImageHeader>

source

pub fn header(&self) -> &FrameHeader

Returns the frame header.

source

pub fn toc(&self) -> &Toc

Returns the TOC.

See the documentation of Toc for details.

source

pub fn pass_shifts(&self) -> &BTreeMap<u32, (i32, i32)>

source

pub fn data(&self, group: TocGroupKind) -> Option<&[u8]>

source§

impl Frame

source

pub fn feed_bytes<'buf>(&mut self, buf: &'buf [u8]) -> &'buf [u8]

source

pub fn is_loading_done(&self) -> bool

source§

impl Frame

source

pub fn try_parse_lf_global<S>(&self) -> Option<Result<LfGlobal<S>, Error>>
where S: Sample,

source

pub fn try_parse_lf_group<S>( &self, lf_global_vardct: Option<&LfGlobalVarDct>, global_ma_config: Option<&MaConfig>, mlf_group: Option<TransformedModularSubimage<'_, S>>, lf_group_idx: u32 ) -> Option<Result<LfGroup<S>, Error>>
where S: Sample,

source

pub fn try_parse_hf_global<S>( &self, cached_lf_global: Option<&LfGlobal<S>> ) -> Option<Result<HfGlobal, Error>>
where S: Sample,

source

pub fn pass_group_bitstream( &self, pass_idx: u32, group_idx: u32 ) -> Option<Result<PassGroupBitstream<'_>, Error>>

source§

impl Frame

source

pub fn adjust_region(&self, _: &mut (u32, u32, u32, u32))

Adjusts the cropping region of the image to the actual decoding region of the frame.

The cropping region of the image needs to be adjusted to be used in a frame, for a few reasons:

  • A frame may be blended to the canvas with offset, which makes the image and the frame have different coordinates.
  • Some filters reference other samples, which requires padding to the region.

This method takes care of those and adjusts the given region appropriately.

Trait Implementations§

source§

impl Bundle<FrameContext<'_>> for Frame

§

type Error = Error

source§

fn parse( bitstream: &mut Bitstream<'_>, ctx: FrameContext<'_> ) -> Result<Frame, Error>

Parses a value from the bitstream with the given context.
source§

impl Debug for Frame

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl !Freeze for Frame

§

impl !RefUnwindSafe for Frame

§

impl Send for Frame

§

impl Sync for Frame

§

impl Unpin for Frame

§

impl !UnwindSafe for Frame

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

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more