matula / firstimg
There is no license information available for the latest version (v1.0.0) of this package.
Get the first image from a web page
v1.0.0
2014-08-03 23:55 UTC
Requires
- php: >=5.4.0
- intervention/image: 2.0.6
- symfony/dom-crawler: 2.5.2
Requires (Dev)
- phpunit/phpunit: 4.1.*
This package is not auto-updated.
Last update: 2025-02-25 03:05:40 UTC
README
Simple library that returns the first image on a web page. Though, only if it's in an <img>
tag.
Installation
Add to your composer.json file
"matula/firstimg": "dev-master"
Usage
$url = 'http://google.com';
$image = new Matula\Firstimg\Firstimg($url);
echo $image->downloadImage();
This will find the first image on the page and download it. Currently, it also resizes the image to 100px.
TODO
- better documentation
- customize the image's filename/extension
- customize image resizing, or disable
- better formatting, etc