Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Rectangle

import type { Rectangle } from "https://aws-api.deno.dev/v0.4/services/mediaconvert.ts?docs=full";

Use Rectangle to identify a specific area of the video frame.

interface Rectangle {
Height?: number | null;
Width?: number | null;
X?: number | null;
Y?: number | null;
}

§Properties

§
Height?: number | null
[src]

Height of rectangle in pixels. Specify only even numbers.

§
Width?: number | null
[src]

Width of rectangle in pixels. Specify only even numbers.

§
X?: number | null
[src]

The distance, in pixels, between the rectangle and the left edge of the video frame. Specify only even numbers.

§
Y?: number | null
[src]

The distance, in pixels, between the rectangle and the top edge of the video frame. Specify only even numbers.