Uploading an image cropped using a cropper.js plugin

前端 未结 3 1220
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-14 17:01

I have used cropper.js plugin in my application to crop images. I am able to crop the images. Now I am trying to upload the images instead of downloading them. I have updated th

3条回答
  •  星月不相逢
    2021-02-14 17:53

    github.com/fengyuanchen/cropperj Api Doc for Server Upload as formData and Image src tag definition.

    and watch out the below paragraph of getCroppedCanvas():

    After then, you can display the canvas as an image directly, or use HTMLCanvasElement.toDataURL to get a Data URL, or use HTMLCanvasElement.toBlob to get a blob and upload it to server with FormData if the browser supports these APIs.

提交回复
热议问题