index.php 732 Bytes
<?php

use \kartik\file\FileInput;
use yii\widgets\ActiveForm;
use yii\helpers\Html;

/* @var $this yii\web\View */
$this->title = 'Image cropper';
?>
<?= Html::a('Gallery', ['image/gallery']) ?>
<?php $form = ActiveForm::begin(['options' => ['enctype'=>'multipart/form-data']]); ?>
<?= Html::dropDownList('crop_id', null, $ukrSeeds, ['id' => 'ukr_seeds']) ?>
<?= FileInput::widget([
    'name' => 'imageFiles[]',
    'language' => 'ru',
    'options' => ['multiple' => true, 'accept' => 'image/*'],
    'pluginOptions' => [
        'previewFileType' => 'image',
        'maxFileCount' => 20
    ]
]); ?>
<?php $form->end(); ?>
<?= Html::buttonInput('Draw', ['onclick' => 'js:draw();', 'style' => 'display : block']) ?>
<canvas/>