[][src]Struct gdl::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 height(self) -> u32[src]

pub fn width(self) -> u32[src]

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

pub fn new_from_imgdata(
    &mut self,
    img_data: ImageData,
    width: u32,
    height: u32
) -> PhotonImage
[src]

pub fn new_with_background(
    width: u32,
    height: u32,
    background_color: &Rgb
) -> PhotonImage
[src]

pub fn new_with_gradient(width: u32, height: u32) -> PhotonImage[src]

pub fn new_socialmedia_graphic(name: &str) -> PhotonImage[src]

Create a new social media graphic. Available types include: linkedin_banner, pinterest, fb_ad, fb_post, instagram_post, twitter_header, twitter_post.

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

Trait Implementations

impl From<PhotonImage> for JsValue[src]

impl Debug for PhotonImage[src]

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 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 IntoWasmAbi for PhotonImage[src]

type Abi = u32

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

impl WasmDescribe for PhotonImage[src]

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

Auto Trait Implementations

impl Send for PhotonImage

impl Sync for PhotonImage

impl Unpin for PhotonImage

impl UnwindSafe for PhotonImage

impl RefUnwindSafe for PhotonImage

Blanket Implementations

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

impl<T> From<T> for 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

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

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

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> 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]