Class Image (1.48.0)

Image(
    image_bytes: typing.Optional[bytes] = None, gcs_uri: typing.Optional[str] = None
)

Image.

Methods

Image

Image(
    image_bytes: typing.Optional[bytes] = None, gcs_uri: typing.Optional[str] = None
)

Creates an Image object.

Parameters
NameDescription
image_bytes typing.Optional[bytes]

Image file bytes. Image can be in PNG or JPEG format.

gcs_uri typing.Optional[str]

Image URI in Google Cloud Storage.

load_from_file

load_from_file(location: str) -> vertexai.vision_models.Image

Loads image from local file or Google Cloud Storage.

Parameter
NameDescription
location str

Local path or Google Cloud Storage uri from where to load the image.

save

save(location: str)

Saves image to a file.

Parameter
NameDescription
location str

Local path where to save the image.

show

show()

Shows the image.

This method only works when in a notebook environment.