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

Image

import type { Image } from "https://googleapis.deno.dev/v1/vision:v1.ts";

Client image to perform Google Cloud Vision API tasks over.

interface Image {
content?: Uint8Array;
source?: ImageSource;
}

§Properties

§
content?: Uint8Array
[src]

Image content, represented as a stream of bytes. Note: As with all bytes fields, protobuffers use a pure binary representation, whereas JSON representations use base64. Currently, this field only works for BatchAnnotateImages requests. It does not work for AsyncBatchAnnotateImages requests.

§

Google Cloud Storage image location, or publicly-accessible image URL. If both content and source are provided for an image, content takes precedence and is used to perform the image annotation request.