pub struct Sixel<'a> {
pub bytes: Option<&'a [u8]>,
pub width: i32,
pub height: i32,
pub format: PixelFormat,
pub dither: Dither,
pub split: SixelSplit,
pub mean: SixelMean,
pub quality: SixelQuality,
}
alloc
and crate feature term
and (crate features io
or std
) and (crate features dep_hashbrown
or std
) and crate feature image
only.Expand description
A configurable sixel string builder from a slice of pixel data bytes.
By default it assumes RGB888
PixelFormat, and Auto
matic Dither
,
SixelSplit
, SixelMean
and SixelQuality
.
§Example
// 2x2 pixels (Red, Green, Blue, White)
const IMAGE_HEX: &[u8] = b"FF000000FF000000FFFFFFFF";
// RRGGBBrrggbbRRGGBBrrggbb
println!("{}", Sixel::with_bytes_size(IMAGE_HEX, 2, 2).build().unwrap());
Fields§
§bytes: Option<&'a [u8]>
§width: i32
§height: i32
§format: PixelFormat
§dither: Dither
§split: SixelSplit
§mean: SixelMean
Method for choosing a representative mean color for the box.
quality: SixelQuality
Implementations§
Source§impl<'bytes> Sixel<'bytes>
§Common methods
impl<'bytes> Sixel<'bytes>
§Common methods
Sourcepub const fn with_bytes(bytes: &'bytes [u8]) -> Self
pub const fn with_bytes(bytes: &'bytes [u8]) -> Self
Returns a new empty sixel builder with the given byte slice.
Sourcepub const fn with_size(width: i32, height: i32) -> Self
pub const fn with_size(width: i32, height: i32) -> Self
Returns a new empty sixel builder with the given size.
Sourcepub const fn with_bytes_size(
bytes: &'bytes [u8],
width: i32,
height: i32,
) -> Self
pub const fn with_bytes_size( bytes: &'bytes [u8], width: i32, height: i32, ) -> Self
Returns a new empty sixel builder with the given byte slize and size.
Sourcepub fn build(self) -> Result<String, SixelError> ⓘ
pub fn build(self) -> Result<String, SixelError> ⓘ
Builds a sixel formatted string with the configured options.
§Errors
Returns an error if the bytes slice have not been set, if either the width or height is 0, or the slice is not long enough.
Sourcepub const fn format(self, format: PixelFormat) -> Self
pub const fn format(self, format: PixelFormat) -> Self
Sets the pixel format.
Sourcepub const fn split(self, split: SixelSplit) -> Self
pub const fn split(self, split: SixelSplit) -> Self
Sets the method for largest dimension for splitting.
Sourcepub const fn quality(self, quality: SixelQuality) -> Self
pub const fn quality(self, quality: SixelQuality) -> Self
Sets the quality.
Source§impl Sixel<'_>
§Extra methods
impl Sixel<'_>
§Extra methods
Sourcepub const fn format_rgb555(self) -> Self
pub const fn format_rgb555(self) -> Self
Sets the format
field to PixelFormat::RGB555
.
Sourcepub const fn format_rgb565(self) -> Self
pub const fn format_rgb565(self) -> Self
Sets the format
field to PixelFormat::RGB565
.
Sourcepub const fn format_rgb888(self) -> Self
pub const fn format_rgb888(self) -> Self
Sets the format
field to PixelFormat::RGB888
.
Sourcepub const fn format_bgr555(self) -> Self
pub const fn format_bgr555(self) -> Self
Sets the format
field to PixelFormat::BGR555
.
Sourcepub const fn format_bgr565(self) -> Self
pub const fn format_bgr565(self) -> Self
Sets the format
field to PixelFormat::BGR565
.
Sourcepub const fn format_bgr888(self) -> Self
pub const fn format_bgr888(self) -> Self
Sets the format
field to PixelFormat::BGR888
.
Sourcepub const fn format_argb8888(self) -> Self
pub const fn format_argb8888(self) -> Self
Sets the format
field to PixelFormat::ARGB8888
.
Sourcepub const fn format_rgba8888(self) -> Self
pub const fn format_rgba8888(self) -> Self
Sets the format
field to PixelFormat::RGBA8888
.
Sourcepub const fn format_abgr8888(self) -> Self
pub const fn format_abgr8888(self) -> Self
Sets the format
field to PixelFormat::ABGR8888
.
Sourcepub const fn format_bgra8888(self) -> Self
pub const fn format_bgra8888(self) -> Self
Sets the format
field to PixelFormat::BGRA8888
.
Sourcepub const fn format_g1(self) -> Self
pub const fn format_g1(self) -> Self
Sets the format
field to PixelFormat::G1
.
Sourcepub const fn format_g2(self) -> Self
pub const fn format_g2(self) -> Self
Sets the format
field to PixelFormat::G2
.
Sourcepub const fn format_g4(self) -> Self
pub const fn format_g4(self) -> Self
Sets the format
field to PixelFormat::G4
.
Sourcepub const fn format_g8(self) -> Self
pub const fn format_g8(self) -> Self
Sets the format
field to PixelFormat::G8
.
Sourcepub const fn format_ag88(self) -> Self
pub const fn format_ag88(self) -> Self
Sets the format
field to PixelFormat::AG88
.
Sourcepub const fn format_ga88(self) -> Self
pub const fn format_ga88(self) -> Self
Sets the format
field to PixelFormat::GA88
.
Sourcepub const fn format_pal1(self) -> Self
pub const fn format_pal1(self) -> Self
Sets the format
field to PixelFormat::PAL1
.
Sourcepub const fn format_pal2(self) -> Self
pub const fn format_pal2(self) -> Self
Sets the format
field to PixelFormat::PAL2
.
Sourcepub const fn format_pal4(self) -> Self
pub const fn format_pal4(self) -> Self
Sets the format
field to PixelFormat::PAL4
.
Sourcepub const fn format_pal8(self) -> Self
pub const fn format_pal8(self) -> Self
Sets the format
field to PixelFormat::PAL8
.
Sourcepub const fn split_auto(self) -> Self
pub const fn split_auto(self) -> Self
Sets the split
field to SixelSplit::Auto
.
Sourcepub const fn split_norm(self) -> Self
pub const fn split_norm(self) -> Self
Sets the split
field to SixelSplit::Norm
.
Sourcepub const fn split_lum(self) -> Self
pub const fn split_lum(self) -> Self
Sets the split
field to SixelSplit::Lum
.
Sourcepub const fn mean_auto(self) -> Self
pub const fn mean_auto(self) -> Self
Sets the mean
field to SixelMean::Auto
.
Sourcepub const fn mean_center(self) -> Self
pub const fn mean_center(self) -> Self
Sets the mean
field to SixelMean::Center
.
Sourcepub const fn mean_colors(self) -> Self
pub const fn mean_colors(self) -> Self
Sets the mean
field to SixelMean::Colors
.
Sourcepub const fn mean_pixels(self) -> Self
pub const fn mean_pixels(self) -> Self
Sets the mean
field to SixelMean::Pixels
.
Sourcepub const fn dither_auto(self) -> Self
pub const fn dither_auto(self) -> Self
Sets the dither
field to Dither::Auto
.
Sourcepub const fn dither_none(self) -> Self
pub const fn dither_none(self) -> Self
Sets the dither
field to Dither::None
.
Sourcepub const fn dither_atkinson(self) -> Self
pub const fn dither_atkinson(self) -> Self
Sets the dither
field to Dither::Atkinson
.
Sourcepub const fn dither_fs(self) -> Self
pub const fn dither_fs(self) -> Self
Sets the dither
field to Dither::FS
.
Sourcepub const fn dither_jajuni(self) -> Self
pub const fn dither_jajuni(self) -> Self
Sets the dither
field to Dither::JaJuNi
.
Sourcepub const fn dither_stucki(self) -> Self
pub const fn dither_stucki(self) -> Self
Sets the dither
field to Dither::Stucki
.
Sourcepub const fn dither_burkes(self) -> Self
pub const fn dither_burkes(self) -> Self
Sets the dither
field to Dither::Burkes
.
Sourcepub const fn dither_adither(self) -> Self
pub const fn dither_adither(self) -> Self
Sets the dither
field to Dither::ADither
.
Sourcepub const fn dither_xdither(self) -> Self
pub const fn dither_xdither(self) -> Self
Sets the dither
field to Dither::XDither
.
Sourcepub const fn quality_auto(self) -> Self
pub const fn quality_auto(self) -> Self
Sets the quality
field to SixelQuality::Auto
.
Sourcepub const fn quality_high(self) -> Self
pub const fn quality_high(self) -> Self
Sets the quality
field to SixelQuality::High
.
Sourcepub const fn quality_low(self) -> Self
pub const fn quality_low(self) -> Self
Sets the quality
field to SixelQuality::Low
.
Sourcepub const fn quality_full(self) -> Self
pub const fn quality_full(self) -> Self
Sets the quality
field to SixelQuality::Full
.
Sourcepub const fn quality_high_color(self) -> Self
pub const fn quality_high_color(self) -> Self
Sets the quality
field to SixelQuality::HighColor
.
Trait Implementations§
Source§impl ConstDefault for Sixel<'_>
impl ConstDefault for Sixel<'_>
impl<'a> Eq for Sixel<'a>
impl<'a> StructuralPartialEq for Sixel<'a>
Auto Trait Implementations§
impl<'a> Freeze for Sixel<'a>
impl<'a> RefUnwindSafe for Sixel<'a>
impl<'a> Send for Sixel<'a>
impl<'a> Sync for Sixel<'a>
impl<'a> Unpin for Sixel<'a>
impl<'a> UnwindSafe for Sixel<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> ByteSized for T
impl<T> ByteSized for T
Source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
Source§fn byte_align(&self) -> usize
fn byte_align(&self) -> usize
Source§fn ptr_size_ratio(&self) -> [usize; 2]
fn ptr_size_ratio(&self) -> [usize; 2]
Source§impl<T, R> Chain<R> for Twhere
T: ?Sized,
impl<T, R> Chain<R> for Twhere
T: ?Sized,
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> ExtAny for T
impl<T> ExtAny for T
Source§fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
TypeId
of Self
using a custom hasher.Source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Source§impl<T> ExtMem for Twhere
T: ?Sized,
impl<T> ExtMem for Twhere
T: ?Sized,
Source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
Source§fn mem_align_of<T>() -> usize
fn mem_align_of<T>() -> usize
Source§fn mem_align_of_val(&self) -> usize
fn mem_align_of_val(&self) -> usize
Source§fn mem_size_of<T>() -> usize
fn mem_size_of<T>() -> usize
Source§fn mem_size_of_val(&self) -> usize
fn mem_size_of_val(&self) -> usize
Source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
true
if dropping values of this type matters. Read moreSource§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where
Self: Sized,
self
without running its destructor. Read moreSource§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
Source§unsafe fn mem_zeroed<T>() -> T
unsafe fn mem_zeroed<T>() -> T
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§fn mem_as_bytes(&self) -> &[u8] ⓘ
fn mem_as_bytes(&self) -> &[u8] ⓘ
unsafe_slice
only.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Hook for T
impl<T> Hook for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more