bupy7 / yii2-widget-cropbox

This widget allows crop image before upload to server and send informations about crop in JSON format.
BSD 3-Clause "New" or "Revised" License
91 stars 33 forks source link

Set minimum and maximum width and height box area resizing #22

Closed mramdhani closed 7 years ago

mramdhani commented 8 years ago

can I Set minimum and maximum width and height box area resizing? thx

bupy7 commented 8 years ago

@mramdhani Which version is was used?

mramdhani commented 8 years ago

version 4.1.0

bupy7 commented 8 years ago
Cropbox::widget([
    ...
    'pluginOptions' => [
        'variants' => [
            [
                'width' => 200,
                'height' => 200,
                'minWidth' => 180,
                'minHeight' => 200,
                'maxWidth' => 350,
                'maxHeight' => 350
            ]
        ]
    ],
    ...
]);

https://github.com/bupy7/jquery-cropbox/blob/master/README.md#variants-required

bupy7 commented 7 years ago

The reason for closing: No answer.