foursquare类别图标的透明版本
返回的 Foursquare 类别图标均具有白色背景和圆形边框。 是否可以获得具有透明背景和/或无边框的图像? 这确实可以节省几个小时。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
返回的 Foursquare 类别图标均具有白色背景和圆形边框。 是否可以获得具有透明背景和/或无边框的图像? 这确实可以节省几个小时。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我认为它们没有正式提供透明背景,没有。不过,我不久前编写了一些 python 代码,它将下载所有类别图标,您可以找到这些图标 这里 然后一点 imagemagick 魔法应该可以让你用透明替换白色背景。
一个快速的 python 脚本,用于遍历图像目录并在每个图像上调用 imagemagick 以将白色背景替换为透明(您可能需要使用模糊因子以获得可接受的结果):
然后裁剪边框,执行相同的操作,但您想要的 imagemagick 命令是 -crop,因此将脚本中的最后几行替换为:
希望一切都有帮助(并节省几个小时的工作!)
I don't think they're officially available with transparent backgrounds, no. However, I wrote a bit of python a while ago that will download all the category icons, which you can find here and then a bit of imagemagick wizardry should allow you to replace the white background with transparent.
A quick python script to go through a directory of images and call imagemagick on each one to replace a white background with transparent (you might need to play with the fuzz factor to get acceptable results):
Then to crop the border, do the same, but the imagemagick command you want is -crop, so replace the last couple of lines in the script with:
hope that all helps (and saves a couple of hours of work!)