maxvtest/image-dl

Image Downloader

1.0.0 2018-01-21 16:14 UTC

This package is not auto-updated.

Last update: 2025-07-13 19:57:34 UTC


README

Installation

composer require maxvtest/image-dl:~1.0

Usage

use Maxvtest\ImageDl\ImageDl;

$url = 'http(s)://free-awesome-images.net/path/name.jpg';
$name = '/path/to/new-file.jpg';

$imageDl = new ImageDl;
$imageDl->sslVerifyPeer = true; // 'true' to download image from https, but without SSL verification.
$imageDl->download($url, $name);