zakurdaev / yii2-image-ratio-validator
Use editor.js in form. Module for Yii2
Installs: 320
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- php: >=7.0
- yiisoft/yii2: ~2.0.0
This package is auto-updated.
Last update: 2025-03-08 23:14:19 UTC
README
Image Ratio Validator
allows you to add image validation by its aspect ratio.
Install
The preferred way to install this extension is through composer.
Either run
$ php composer.phar require --prefer-dist zakurdaev/yii2-image-ratio-validator "*"
or add
"zakurdaev/yii2-image-ratio-validator": "*"
to the require
section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your code:
Strict validate
public function rules() { return [ [['image'], zakurdaev\imageratio\ImageRatioValidator::class, 'ratios' => 1600/1200], ]; }
Range validate
public function rules() { return [ [['image'], zakurdaev\imageratio\ImageRatioValidator::class, 'ratios' => ['from' => 1400/1200, 'to' => 1600/1200]], ]; }
Multiple validate
public function rules() { return [ [['image'], zakurdaev\imageratio\ImageRatioValidator::class, 'ratios' => [ 16/9, ['from' => 100/50, 'to' => 150/50] ]], ]; }
License
The BSD License (BSD). Please see License File for more information.