Google Slides API Adds Text Formatting
Written by Kay Ewbank   
Tuesday, 03 January 2017

The G Suite team at Google has added text formatting to the recently released Slides API. 

The Google Slides API lets you generate presentation slides automatically from applications.The idea is that business data on inventory items such as retail merchandise, homes or property sales sites, or anything where you have a set of cataloged assets can be instantly turned into presentations based on pre-existing slide templates. This may sound like something you once had a nightmare about, but look on the bright side - if you can do it automatically you won't be asked to help the marketing department to do it manually!

slidesapi

 

The documentation says that:

"Apps can integrate with the Google Slides API to create beautiful slide decks automatically from user- and system-provided data. For example, you could use customer details from a database and combine them with predesigned templates and selected configuration options to create finished presentations in a fraction of the time it would take to create them manually."

The team behind the API has put together several videos showing how to automatically update text and images in slides, and how to generate slides from spreadsheet data. The latest round in this is a lesson in how to format text using the API.

 

You manipulate text in Google Slides by sending API requests in the form of JSON payloads sent to the API's batchUpdate() method. If you're writing text the process is fairly simple because all you need to provide is the text to be written. You can then format the text. For example, if you have the text "Hello World!" on a slide and want to make the Hello part bold, the JavaScript would look like this:
{
    "updateTextStyle": {
        "objectId": shapeID,
        "style": {
            "bold": true
        },
        "textRange": {
            "type": "FIXED_RANGE",
            "startIndex": 0,
            "endIndex": 5
        },
        "fields": "bold"
}
There are some good samples showing how to use these and other common API operations on the slides API pages.
 
slidesapi
 

More Information

Google Slides API pages

Related Articles

Google Adds Smart Scrolling To Mobile Maps

Play Google's AI Drawing Guessing Game  

 

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

 

Banner


TypeScript 5.4 Adds NoInfer Type
12/03/2024

TypeScript 5.4 has been released, with the addition of a NoInfer utility type alongside preserved narrowing in closures following last assignments. 



JetBrains Announces Academy AI Festival
21/02/2024

JetBrains is running an Academy AI Festival that they describe as a fusion of hands-on learning and inspiring challenges that will provide inspiration for innovation and will advance your understandin [ ... ]


More News

 

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Tuesday, 03 January 2017 )