sana / yii2-image-by-url
Расширение для загрузки картинки по URL (jpg, png, gif).
Package info
github.com/SanaStashkevich/image
Type:yii2-extension
pkg:composer/sana/yii2-image-by-url
1.0.2
2019-01-16 15:25 UTC
Requires
- yiisoft/yii2: ~2.0
Requires (Dev)
This package is auto-updated.
Last update: 2026-03-17 12:49:10 UTC
README
Расширение для загрузки картинки по URL (jpg, png, gif).
Installation
The preferred way to install this extension is through composer.
Either run
composer require --prefer-dist sana/yii2-image-by-url "*"
or add
"sana/yii2-image-by-url": "*"
to the require section of your composer.json file.
Usage
Once the extension is installed, simply use it in your code by :
<?php
namespace app\commands;
use yii\console\Controller;
use sana\image\Loader;
class LoadController extends Controller
{
public function actionLoad($from, $to)
{
$loader = new Loader();
$loader->load($from,$to);
}
}