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


Remembering Grace Hopper On Her 114th Anniversary
09/12/2024

Today sees the start of Computer Science Education Week and  the 2024 Hour of Code. These educational event are timed to coincide with Grace Hopper's birthday on January 9th, 1906 due to her conc [ ... ]



Advent Of Code 2024 Now Underway
01/12/2024

December 1st is much anticipated among those who like programming puzzles. It is time to start solving small but tricky puzzles on the Advent of Code website with the goal of amassing 50 stars by Chri [ ... ]


More News

 

espbook

 

Comments




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

Last Updated ( Tuesday, 03 January 2017 )