Laravel Favicon Extractor
Published on by Paul Redmond
Laravel Favicon Extractor is a package by Stefan Bauer that provides a convenient way to extract a favicon from any website and save it to the configured storage filesystem in your project.
One example use-case I could think of is grabbing the favicon to represent a website that is part of your application, for example, setting up websites to be monitored or configured as part of a database record.
Here’s how you use the library to grab the favicon:
$favicon = FaviconExtractor::fromUrl('https://laravel.com')->fetchOnly();
This method returns an object representation of the favicon, which you can then get the raw content from:
$favicon->getContent();
You can save the favicon to storage with the following:
// returns favicons/myFilename.pngFaviconExtractor::fromUrl('https://laravel.com') ->fetchAndSaveTo('favicons', 'myFilename');
The second argument is a custom filename. If you don’t provide a second argument, the library generates a filename. Either way, the call to fetchAndSaveTo()
returns the storage path of the newly created file.
You can learn more about this package and check out the source code on GitHub at stefanbauer/laravel-favicon-extractor.