I am using the vue-advanced-cropper plugin with vue2. It works ok so far but I have a problem, when I upload a very wide image with a small height. I have an area of 240x240 pixels in which I want to crop an uploaded image. So an image where width < 240 should be resized to 240 and also an image with height < 240 should be resized so that it always fits into my 240x240 canvas.
How can I achieve this? With width it seems to work out of the box, but when I upload a very wide image, the result looks like this:
I cannot seem to get it to work, I tried imageRestriction="fill-area" or imageRestriction="fit-area" which makes absolutely no difference.
Here's my code:
<template>
<div
class="cropper-container"
:style="{width: '240px', height: '240px'}"
>
<cropper
:src="image.src"
:check-orientation="false"
@change="imageChange"
/>
<div class="cropper-info-icon">
<info-icon :text="'info icon text'" />
</div>
</div>
</template>
image.src is a blob, nothing special. How can I achieve this?
There is a predefined class in vue-advanced-cropper which will get the default uploaded image height(even if you define the height the container will take default image height), you can solve it by adding
max-height
for example: