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

This package is not auto-updated.

Last update: 2024-04-08 22:58:49 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