tapakan/image-downloader

PHP lib for download images from remote host

0.0.1 2016-09-22 09:49 UTC

This package is not auto-updated.

Last update: 2024-04-27 16:37:06 UTC


README

Build Status Code Climate Coverage Status

INSTALL

Add to require section

  "require" : {
    "tapakan/image-downloader" : "0.0.1"
  }

EXAMPLES

require('vendor/autoload.php');
use Tapakan\ImageDownloader\Manager;

$manager = new Manager();
$manager->getDownloader()->load('http://example.com/path_to_img');
$manager->getDownloader()->load([
    'http://example.com/path_to_img',
    'http://example.com/path_to_img'
]);

// Change destination folder
$manager = new Manager([
    'dir' => __DIR__
]);
$manager->getDownloader()->load('http://example.com/path_to_img');