AdsApp.ImageBuilder
Stay organized with collections
Save and categorize content based on your preferences.
Builder for an image under construction.
Typical usage:
var imageUrl = "http://www.example.com/example.png";
var imageBlob = UrlFetchApp.fetch(imageUrl).getBlob();
// Set the content type to be supported by Ads Scripts
imageBlob.setContentType("IMAGE_PNG");
var mediaOperation = AdsApp.adMedia().newImageBuilder()
.withName("name")
.withData(imageBlob)
.build();
var image = mediaOperation.getResult();
Note that it is only necessary to call MediaOperation.getResult()
if you need to access the new media item for further processing (for
instance, to reate an ad). Otherwise, calling ImageBuilder.build() is
sufficient to ensure that the ad is created.
Methods:
build()
Creates an image. Returns a
MediaOperation
that can be used to
get the new image (or access any associated errors if the creation failed).
Return values:
withData(data)
Sets new image's data to the specified value. This field is required.
Arguments:
Name | Type | Description |
data |
Blob.Blob |
The data for the image. |
Return values:
withName(name)
Sets new image's name to the specified value. This field is required.
Arguments:
Name | Type | Description |
name |
String |
The name for the image. |
Return values:
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-01-28 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-01-28 UTC."],[[["The `ImageBuilder` facilitates the creation of images for use in Google Ads."],["To utilize the builder, you need to provide the image data as a blob and assign a name to the image."],["You can optionally access the newly created image via `MediaOperation.getResult()` for further manipulation."],["The image data's content type must align with Google Ads API's supported MimeTypeEnum values."],["The `withData()` and `withName()` methods are essential for setting the image's content and identifier, respectively."]]],[]]