在写推文过程重常常需要对某个网站进行截图,当作网站预览缩略图,每次都手动截图太麻烦,因此找了一些免费的自动缩略图 API,可以实现自动生成网页缩略图截图。本文做个记录并推荐大家使用,简单快捷,同时也可以直接在 img 标签中使用。
一、wordpress 官方缩略图 API
使用方法:
https://s0.wp.com/mshots/v1/{YOURURL}?w={Width}&h={Height}
在 /v1/ 之后直接填网址即可,部分可选参数,w= 截图宽度,h= 截图高度,默认宽高尺寸为 1280×720。
例如:
https://s0.wp.com/mshots/v1/https://www.zhujidaba.com/
网址可以带 https 也可以不带,例如:
https://s0.wp.com/mshots/v1/www.zhujidaba.com
截图 www.zhujidaba.com 首页缩略图,不使用宽高等参数即默认截图 1280×720 的缩略图。
https://s0.wp.com/mshots/v1/www.zhujidaba.com
?w=600&h=400
带宽高参数,即截取宽 600、高 400 的缩略图。
其他备用网址:
https://s0.wp.com/mshots/v1/{url}?w={width}&h={height}
https://s1.wp.com/mshots/v1/{url}?w={width}&h={height}
https://s2.wp.com/mshots/v1/{url}?w={width}&h={height}
https://s3.wp.com/mshots/v1/{url}?w={width}&h={height}
https://s4.wp.com/mshots/v1/{url}?w={width}&h={height}
https://s5.wp.com/mshots/v1/{url}?w={width}&h={height}
二、urlscan.io
使用方法:
https://urlscan.io/liveshot/?width={width}&height={height}&url={YOURURL}
例如:
https://urlscan.io/liveshot/?width=600&height=400&url=https://www.zhujidaba.com/
截取宽 600、高 400 的缩略图。
也可以不带宽高参数,默认截取宽高尺寸为 1280×1024。例如:
https://urlscan.io/liveshot/?url=https://www.zhujidaba.com/
三、Thum.io
使用方法:
https://image.thum.io/get/{url}
默认截取 600×600 尺寸的缩略图。
例如:
https://image.thum.io/get/https://www.zhujidaba.com/
正文完