ivoba/favicon-fetcher
最新稳定版本:1.1.2
Composer 安装命令:
composer require ivoba/favicon-fetcher
包简介
Favicon Fetcher
README 文档
README
Lib to fetch Favicon from a url and store it as PNG. Its highly flexible. You can use your own Fetchers or FileNamerResolvers. So it would also be possible to store it as gif, jpg or whatever.
Installation
Via composer:
Add: php composer require ivoba/favicon-fetcher:~1.0
And update it php composer update ivoba/favicon-fetcher
Usage
Use the static factory method to create the Fetcher with default settings:
$fetcher = \Ivoba\FaviconFetcher\FaviconFetcher::create();
The default settings are:
- stores pngs in/tmp
- uses DomainFileNameResolver, which creates a filename based on the domain: github.com => github.com.png
- trys to fetch favicon by different webservices in this order:
- Google web service
- http://getfavicon.appspot.com (can be broken at times)
- Default Image
- if Google service doesnt deliver a converted png already, we create it ourselves via imagemagick on commandline
All components are exchangable via interfaces for custom requirements.
Demo
cd fetcher-dir
php -S localhost:8080
type in your browser:
http://localhost:8080/demo.php?favicon=facebook.com;twitter.com;unfuddle.com;packagist.org
You will see all favicons as png images.
统计信息
- 总下载量: 1.68k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-11-10