ivoba / favicon-fetcher
Favicon Fetcher
Installs: 1 678
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 1
Requires
- php: >=5.4
- ext-curl: *
Requires (Dev)
- ivoba/stop: ~0.2
- phpunit/phpunit: 4.*
- scrutinizer/ocular: ~1.1
This package is auto-updated.
Last update: 2024-10-10 22:10:56 UTC
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.