如何将推文转换为图片

14

有没有特定的应用程序、网站或其他工具可以将推文转换为图片?我想在Telegram、whatsapp等其他应用程序中分享推文。谢谢!


1
截屏? - fuzzything44
3个回答

16
谷歌拥有一款秘密截图API(Secret Screenshot API),例如,您可以使用它来获取像这样的推文截图。

https://www.googleapis.com/pagespeedonline/v1/runPagespeed?screenshot=true&strategy=mobile&url=https%3a%2f%2ftwitter.com%2fedent%2fstatus%2f661570680253755392

在那个JSON响应的底部,你会看到:
"screenshot": {
     "data": "_9j_4AAQSkZJRgAB.....=",
     "height": 569,
     "mime_type": "image/jpeg",
     "width": 320
 }

您需要使用URL和文件名安全字母表对其进行Base64解码。
这将为您提供Tweet的JPG截图。

3
我创建了一个小型的 Web 应用程序,可以将推特转换为图片。它在后端使用 Puppeteer 将 Twitter 的嵌入式 URL 连接起来并截屏。你还可以更改一些参数,如图像宽度、填充、主题以及将图像下载为 PNG 文件。它是开源的,因此您可以查看代码。 https://github.com/ozgrozer/tweet-image https://tweet-image.glitch.me/ enter image description here

3

现在您可以使用 Twitter 上的 @aissistant 账号获取推文的图像或截图。

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.

如果您想了解其他选项,比如将其转化为表情包和笑话,请查看该帐号。

完全透明:我是该账号背后的机器人的创造者。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接