Appzi Typings
    Preparing search index...

    Type Alias PostRenderImage

    A single screenshot image part for multipart capture scenarios. When capturing long pages or multiple regions, screenshots are captured in parts and later stitched together.

    type PostRenderImage = {
        imgSrc: string;
        position?: Partial<XYWH>;
        removeBg?: boolean;
    }
    Index

    Properties

    imgSrc: string

    Base64-encoded image data or URL to the image.

    position?: Partial<XYWH>

    Position and dimensions for placing this image in the final composition.

    removeBg?: boolean

    Whether to remove the background from this image part.