pixi.js
    Preparing search index...

    Type Alias GetPixelsOutputAdvanced

    Data about the pixels of a texture. This includes the pixel data as a Uint8ClampedArray, and the width and height of the texture.

    type GetPixelsOutput = {
        height: number;
        pixels: Uint8ClampedArray;
        width: number;
    }
    Index

    Properties

    Properties

    height: number
    width: number