Di Posting Oleh : NAMA BLOG ANDA (NAMA ANDA)
Kategori : G Suite Google APIs google apps Google Slides API
Originally shared on the G Suite Developers Blog
Posted by Wesley Chun (@wescpy), Developer Advocate, G Suite
- When the Google Slidesteam launched their very first API last November, it immediately opened up a whole new class of applications. These applications have the ability to interact with the Slides service, so you can perform operations on presentations programmatically. Since its launch, we've published several videos to help you realize some of those possibilities, showing you how to:
Developers use
insertText
requests to tell the API to add text to slides. This is true whether you're adding text to a textbox, a shape or table cell. Similar to the Google Sheets API, all requests are made as JSON payloads sent to the API's batchUpdate()
method. Here's the JavaScript for inserting text in some object (objectID
) on a slide: {Adding shapes is a bit more challenging, as you can see from itssample JSON structure:
"insertText": {
"objectId": objectID,
"text": "Hello World!\n"
}
{Placing or manipulating shapes or images on slides requires more information so the cloud service can properly render these objects. Be aware that it does involve some math, as you can see from the Page Elements page in the docs as well as the Transforms concept guide. In the video, I drop a few hints and good practices so you don't have to start from scratch.
"createShape": {
"shapeType": "SMILEY_FACE",
"elementProperties": {
"pageObjectId": slideID,
"size": {
"height": {
"magnitude": 3000000,
"unit": "EMU"
},
"width": {
"magnitude": 3000000,
"unit": "EMU"
}
},
"transform": {
"unit": "EMU",
"scaleX": 1.3449,
"scaleY": 1.3031,
"translateX": 4671925,
"translateY": 450150
}
}
}
}
Regardless of how complex your requests are, if you have at least one, say in an array named
requests
, you'd make an API call with the aforementioned batchUpdate()
method, which in Python looks like this (assuming SLIDES
is the service endpoint and a presentation ID of deckID)
:SLIDES.presentations().batchUpdate(presentationId=deckID,For a detailed look at the complete code sample featured in the DevByte, check out the deep dive post. As you can see, adding text is fairly straightforward. If you want to learn how to format and style that text, check out the Formatting Text post and video as well as the text concepts guide.
body=requests).execute()
To learn how to perform text search-and-replace, say to replace placeholders in a template deck, check out the Replacing Text & Images post and video as well as the merging data into slides guide. We hope these developer resources help you create that next great app that automates the task of producing presentations for your users!
0 Response to "News About BlogAdding text and shapes with the Google Slides API"
Posting Komentar