AutoBE
    Preparing search index...

    Request a bounded image region, optionally downscaled after cropping.

    interface RegionLocator {
        height: number & Type<"uint32">;
        resize?: Size;
        type: "imageRegion";
        width: number & Type<"uint32">;
        x: number & Type<"uint32">;
        y: number & Type<"uint32">;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    height: number & Type<"uint32">

    Height in pixels.

    resize?: Size

    Optional maximum rendered size after cropping.

    type: "imageRegion"

    Chunk locator discriminator.

    width: number & Type<"uint32">

    Width in pixels.

    x: number & Type<"uint32">

    Left pixel coordinate of the region.

    y: number & Type<"uint32">

    Top pixel coordinate of the region.