how to upload image file from url using FileReader API?

前端 未结 2 1340
-上瘾入骨i
-上瘾入骨i 2021-01-04 05:09

In html form, we have a image field, to upload a file. I followed tutorial from http://blog.teamtreehouse.com/reading-files-using-the-html5-filereader-api and it works fine

2条回答
  •  长情又很酷
    2021-01-04 05:44

    FileReader API is dedicated to local files (cf http://www.html5rocks.com/en/tutorials/file/dndfiles/)

    If you want to download an image from a remote URL and extract its data in javascript you can use Image and Canvas elements, as explained in the following question: Convert an image into binary data in javascript

提交回复
热议问题