UXP Toolkit
    Preparing search index...

    Interface CreateImageDataFromBufferOptions

    objects/options

    24.4

    interface CreateImageDataFromBufferOptions {
        chunky?: boolean;
        colorProfile?: string;
        colorSpace: string;
        components: number;
        fullRange?: boolean;
        height: number;
        width: number;
    }
    Index

    Properties

    chunky?: boolean

    Describes pixel layout. See discussion above. The default value is true.

    24.4

    colorProfile?: string

    Describes the color profile associated with the image data. See note regarding color profiles and 32 bit pixel data at the beginning of this document.

    24.4

    colorSpace: string

    Describes the color space associated with the image data.

    24.4

    components: number

    Number of components per pixel.

    24.4

    fullRange?: boolean

    This value is only used for 16 bit data. Set to true if you are providing pixel data that use the full 16 bit range [0..65535]. Set to false if data is using the reduced range: [0..32768]. The default value is false.

    24.4

    height: number

    The height of the image.

    24.4

    width: number

    The width of the image.

    24.4