fengyuanchen / cropper

⚠️ [Deprecated] No longer maintained, please use https://github.com/fengyuanchen/jquery-cropper
MIT License
7.76k stars 1.74k forks source link

Remove Extra Background #987

Closed mzubairharoon closed 6 years ago

mzubairharoon commented 6 years ago

Hi, this is a great tool for cropping, I'm using it in Vue there is a small problem or I am missing something in it, when I use it, it displays a lot of extra backgrounds which I can't remove as it is set by the container.

https://www.screencast.com/t/dUi4GekOr


 let cropper = new Cropper(this.$refs.editImage, {
            //aspectRatio: 16 / 9,
            //autoCropArea: 1,
            background: false,
            viewMode: 1
          })
          this.cropper = cropper
        })

Can you please tell me what I'm missing?

Thank you

fengyuanchen commented 6 years ago

Place you image correctly first before start a cropper on it.

In short, limit the max width of the image,:

img {
  max-width: 100%;
}