Looker SDK - Download all tiles as PNG with Title?

I am trying to download all the tiles on a dashboard as PNG images

import looker_sdk
dashboard_id = '650'

sdk = looker_sdk.init31()

dashboard = sdk.dashboard(dashboard_id)

for element in dashboard.dashboard_elements:
query_image = sdk.run_inline_query(body=element.query,result_format='png')

This snippet will return the tile image, but without the title visible. Is there any way to add this?

1 0 279