[][src]Struct photon::PhotonImage

pub struct PhotonImage { /* fields omitted */ }

Provides the image's height, width, and contains the image's raw pixels. For use when communicating between JS and WASM, and also natively.

Methods

impl PhotonImage[src]

pub fn new(raw_pixels: Vec<u8>, width: u32, height: u32) -> PhotonImage[src]

pub fn new_from_base64(base64: &str) -> PhotonImage[src]

Create a new PhotonImage from a base64 string.

pub fn new_from_byteslice(vec: Vec<u8>) -> PhotonImage[src]

pub fn get_width(&self) -> u32[src]

Get the width of the PhotonImage.

pub fn get_raw_pixels(&self) -> Vec<u8>[src]

pub fn get_height(&self) -> u32[src]

Get the height of the PhotonImage.

pub fn get_image_data(&mut self) -> ImageData[src]

Convert the PhotonImage's raw pixels to JS-compatible ImageData.

pub fn set_imgdata(&mut self, img_data: ImageData)[src]

Convert ImageData to raw pixels, and update the PhotonImage's raw pixels to this.

Trait Implementations

impl From<PhotonImage> for JsValue[src]

impl From<ImageData> for PhotonImage[src]

Create a new PhotonImage from a raw Vec of u8s representing raw image pixels.

impl Debug for PhotonImage[src]

impl IntoWasmAbi for PhotonImage[src]

type Abi = u32

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl RefFromWasmAbi for PhotonImage[src]

type Abi = u32

The wasm ABI type references to Self are recovered from.

type Anchor = Ref<'static, PhotonImage>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more

impl WasmDescribe for PhotonImage[src]

impl FromWasmAbi for PhotonImage[src]

type Abi = u32

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl OptionFromWasmAbi for PhotonImage[src]

impl OptionIntoWasmAbi for PhotonImage[src]

impl RefMutFromWasmAbi for PhotonImage[src]

type Abi = u32

Same as RefFromWasmAbi::Abi

type Anchor = RefMut<'static, PhotonImage>

Same as RefFromWasmAbi::Anchor

impl Serialize for PhotonImage[src]

impl<'de> Deserialize<'de> for PhotonImage[src]

Auto Trait Implementations

impl Send for PhotonImage

impl Unpin for PhotonImage

impl Sync for PhotonImage

impl UnwindSafe for PhotonImage

impl RefUnwindSafe for PhotonImage

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

fn adapt_into(self) -> D[src]

Convert the source color to the destination color using the bradford method by default Read more

impl<Src, Dst> ValueInto<Dst> for Src where
    Dst: ValueFrom<Src>, 

type Err = <Dst as ValueFrom<Src>>::Err

The error type produced by a failed conversion.

impl<Src, Scheme> ApproxFrom<Src, Scheme> for Src where
    Scheme: ApproxScheme, 

type Err = NoError

The error type produced by a failed conversion.

impl<T> ConvUtil for T

fn approx_as<Dst>(self) -> Result<Dst, Self::Err> where
    Self: ApproxInto<Dst, DefaultApprox>, 

Approximate the subject to a given type with the default scheme.

fn approx_as_by<Dst, Scheme>(self) -> Result<Dst, Self::Err> where
    Scheme: ApproxScheme,
    Self: ApproxInto<Dst, Scheme>, 

Approximate the subject to a given type with a specific scheme.

fn into_as<Dst>(self) -> Dst where
    Self: Into<Dst>, 

Convert the subject to a given type.

fn try_as<Dst>(self) -> Result<Dst, Self::Err> where
    Self: TryInto<Dst>, 

Attempt to convert the subject to a given type.

fn value_as<Dst>(self) -> Result<Dst, Self::Err> where
    Self: ValueInto<Dst>, 

Attempt a value conversion of the subject to a given type.

impl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Src where
    Dst: ApproxFrom<Src, Scheme>,
    Scheme: ApproxScheme, 

type Err = <Dst as ApproxFrom<Src, Scheme>>::Err

The error type produced by a failed conversion.

impl<Src> ValueFrom<Src> for Src

type Err = NoError

The error type produced by a failed conversion.

impl<T, Dst> ConvAsUtil<Dst> for T

fn approx(self) -> Result<Dst, Self::Err> where
    Self: ApproxInto<Dst, DefaultApprox>, 

Approximate the subject with the default scheme.

fn approx_by<Scheme>(self) -> Result<Dst, Self::Err> where
    Scheme: ApproxScheme,
    Self: ApproxInto<Dst, Scheme>, 

Approximate the subject with a specific scheme.

impl<Src> TryFrom<Src> for Src

type Err = NoError

The error type produced by a failed conversion.

impl<Src, Dst> TryInto<Dst> for Src where
    Dst: TryFrom<Src>, 

type Err = <Dst as TryFrom<Src>>::Err

The error type produced by a failed conversion.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]