Class PictureFill

  • PictureFill is a fill that renders an image stretched to its container's dimensions.

  • It provides methods to retrieve the image data as a Blob, a temporary content URL, or the original source URL.

  • The getAs method allows converting the image data to a specified content type before returning it as a Blob.

  • Accessing the content or source URL may require specific authorization scopes.

PictureFill

A fill that renders an image that's stretched to the dimensions of its container.

Methods

MethodReturn typeBrief description
getAs(contentType)BlobReturn the data inside this object as a blob converted to the specified content type.
getBlob()BlobReturn the data inside this object as a converted blob.
getContentUrl()StringGets a URL to the image.
getSourceUrl()String|nullGets the image's source URL, if available.

Detailed documentation

getAs(contentType)

Return the data inside this object as a blob converted to the specified content type.

Parameters

NameTypeDescription
contentTypeStringThe MIME type to convert to.

Return

Blob — The data as a blob.


getBlob()

Return the data inside this object as a converted blob.

Return

Blob — The data as a blob.


getContentUrl()

Gets a URL to the image.

This URL is tagged with the account of the requester, so anyone with the URL effectively accesses the image as the original requester. Access to the image may be lost if the presentation's sharing settings change. The URL expires after a short period of time.

Return

String

Authorization

Scripts that use this method require authorization with one or more of the following scopes:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations

getSourceUrl()

Gets the image's source URL, if available.

When an image is inserted by URL, returns the URL provided during image insertion.

Return

String|null — The image URL, or null if the image does not have a source URL.

Authorization

Scripts that use this method require authorization with one or more of the following scopes:

  • https://www.googleapis.com/auth/presentations.currentonly
  • https://www.googleapis.com/auth/presentations