• Get the dimensions of an image from a URL.

    Parameters

    • url: string

      The URL of the image. It can be a local file (blob url) or a remote file.

    • Optionalopts: { maxWidth?: number }

      Options for the image size.

      • OptionalmaxWidth?: number

        The maximum width of the image. If the image is wider than this, it will be scaled down to this width while keeping the aspect ratio.

    Returns Promise<
        {
            height: number;
            naturalHeight: number;
            naturalWidth: number;
            width: number;
        },
    >

    The width and height of the image as downloaded from the URL. The width and height can differ from the natural numbers if maxImageWidth is given.

MMNEPVFCICPMFPCPTTAAATR