AI-generated Key Takeaways
-
An
ImageItem
is a layout item within Google Forms that displays an image, accessible and modifiable through Apps Script. -
You can programmatically add an
ImageItem
to a form, setting its title, help text, and image using theaddImageItem()
method and associated properties. -
ImageItem
provides various methods to manipulate its properties such as alignment, help text, image source, title, and width, as well as methods to duplicate and access item details. -
Each method and property of
ImageItem
requires specific authorization scopes, primarilyhttps://www.googleapis.com/auth/forms.currentonly
orhttps://www.googleapis.com/auth/forms
, for scripts to execute successfully.
A layout item that displays an image. Items can be accessed or created from a Form
.
// Open a form by ID and add a new image item const form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz'); const img = UrlFetchApp.fetch('https://www.google.com/images/srpr/logo4w.png'); form.addImageItem() .setTitle('Google') .setHelpText('Google Logo') // The help text is the image description .setImage(img);
Methods
Method | Return type | Brief description |
---|---|---|
duplicate() | Image | Creates a copy of this item and appends it to the end of the form. |
get | Alignment | Gets the image's horizontal alignment. |
get | String | Gets the item's help text (sometimes called description text for layout items like Image , Page , and Section ). |
get | Integer | Gets the item's unique identifier. |
get | Blob | Gets the image that is currently assigned to the item. |
get | Integer | Gets the index of the item among all the items in the form. |
get | String | Gets the item's title (sometimes called header text, in the case of a Section ). |
get | Item | Gets the item's type, represented as an Item . |
get | Integer | Gets the image's width in pixels. |
set | Image | Sets the image's horizontal alignment. |
set | Image | Sets the item's help text (sometimes called description text for layout items like Image , Page , and Section ). |
set | Image | Sets the image itself. |
set | Image | Sets the item's title (sometimes called header text, in the case of a Section ). |
set | Image | Sets the image's width in pixels. |
Detailed documentation
duplicate()
Creates a copy of this item and appends it to the end of the form.
Return
Image
— a duplicate of this Image
, for chaining
Authorization
Scripts that use this method require authorization with one or more of the following scopes:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getAlignment()
getHelpText()
Gets the item's help text (sometimes called description text for layout items like Image
, Page
, and Section
).
Return
String
— the item's help text or description text
Authorization
Scripts that use this method require authorization with one or more of the following scopes:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getId()
Gets the item's unique identifier.
Return
Integer
— the item's ID
Authorization
Scripts that use this method require authorization with one or more of the following scopes:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getImage()
getIndex()
Gets the index of the item among all the items in the form.
Return
Integer
— the index of the item
Authorization
Scripts that use this method require authorization with one or more of the following scopes:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getTitle()
Gets the item's title (sometimes called header text, in the case of a Section
).
Return
String
— the item's title or header text
Authorization
Scripts that use this method require authorization with one or more of the following scopes:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getType()
getWidth()
Gets the image's width in pixels.
Return
Integer
— the width in pixels
Authorization
Scripts that use this method require authorization with one or more of the following scopes:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setAlignment(alignment)
Sets the image's horizontal alignment.
Parameters
Name | Type | Description |
---|---|---|
alignment | Alignment | the horizontal alignment |
Return
Image
— this Image
, for chaining
Authorization
Scripts that use this method require authorization with one or more of the following scopes:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setHelpText(text)
Sets the item's help text (sometimes called description text for layout items like Image
, Page
, and Section
).
Parameters
Name | Type | Description |
---|---|---|
text | String | the new help text |
Return
Image
— this Image
, for chaining
Authorization
Scripts that use this method require authorization with one or more of the following scopes:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setImage(image)
Sets the image itself.
Parameters
Name | Type | Description |
---|---|---|
image | Blob | the image data |
Return
Image
— this Image
, for chaining
Authorization
Scripts that use this method require authorization with one or more of the following scopes:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setTitle(title)
Sets the item's title (sometimes called header text, in the case of a Section
).
Parameters
Name | Type | Description |
---|---|---|
title | String | the new title or header text |
Return
Image
— this Image
, for chaining
Authorization
Scripts that use this method require authorization with one or more of the following scopes:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setWidth(width)
Sets the image's width in pixels. Only the image's width can be set. Height is set automatically to maintain the image's proportions.
Parameters
Name | Type | Description |
---|---|---|
width | Integer | the width in pixels |
Return
Image
— this Image
, for chaining
Authorization
Scripts that use this method require authorization with one or more of the following scopes:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms