AboutSupportDeveloper GuideVersion 47.154.100.2
OpenFin JavaScript API
    Preparing search index...

    Interface CapturePageOptions

    Configuration for page capture.

    interface CapturePageOptions {
        area?: Rectangle;
        format?: "png" | "bmp" | "jpg";
        quality?: number;
    }
    Index
    area?: Rectangle

    The area of the window to be captured.

    format?: "png" | "bmp" | "jpg"

    The format of the captured image. Can be 'png', 'jpg', or 'bmp'.

    'png'
    
    quality?: number

    Quality of JPEG image. Between 0 - 100.

    100