Is there any specific app, website or something that converts tweets into images? I would like to share tweets in other apps like Telegram, whatsapp etc. Thanks in advance
-
1Take a screenshot? – fuzzything44 Aug 25 '16 at 19:28
3 Answers
Google has a secret screenshot API
For example, you can use it to get a screenshot of a tweet like this
At the bottom of that JSON response, you'll see
"screenshot": {
"data": "_9j_4AAQSkZJRgAB.....=",
"height": 569,
"mime_type": "image/jpeg",
"width": 320
}
You will need to Base64 decode it using the URL and Filename safe alphabet.
That will give you a JPG screenshot of the Tweet.

- 1
- 1

- 14,034
- 3
- 48
- 89
You can now get images or screenshots of tweets using the @aissistant handle on twitter.
Retweet or reply to any tweet with the comment "@aissistant #image" to get an image.
Retweet or reply to any tweet with the comment "@aissistant #screenshot" to get a screenshot.
Retweet any tweet containing images or videos with the comment "@aissistant #video" to get a video.
For other options like converting to memes and jokes check out the handle.
Full disclosure: I am creator of the bot behind the handle.

- 5,442
- 4
- 41
- 61
I've created a small web-app to convert tweets to images. It connects Twitter's embed URL with Puppeteer in the backend and take a screenshot. You can also change some parameters like image width, padding, theme and download the image as a png file.
It's open source so you can take a look at the code.
https://github.com/ozgrozer/tweet-image

- 1,824
- 1
- 23
- 35