The configuration for image interaction.

interface ImageConfig {
    aspect_ratio?:
        | "1:1"
        | "2:3"
        | "3:2"
        | "3:4"
        | "4:3"
        | "4:5"
        | "5:4"
        | "9:16"
        | "16:9"
        | "21:9";
    image_size?: "1K"
    | "2K"
    | "4K";
}

Properties

aspect_ratio?:
    | "1:1"
    | "2:3"
    | "3:2"
    | "3:4"
    | "4:3"
    | "4:5"
    | "5:4"
    | "9:16"
    | "16:9"
    | "21:9"
image_size?: "1K" | "2K" | "4K"