maxvtest/image-dl

Image Downloader

Installs: 51

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/maxvtest/image-dl

1.0.0 2018-01-21 16:14 UTC

This package is not auto-updated.

Last update: 2025-10-05 20:57:28 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);