How to get image size in bytes using javascript

后端 未结 3 1257
终归单人心
终归单人心 2021-01-20 17:43

please tell me how to get image file size in bytes using javascript.

Thanks

3条回答
  •  独厮守ぢ
    2021-01-20 17:43

    To get the image size, you need to access it on the server. Javascript is a client-side utility, so it can't directly retrieve information from a server.

    You'd have to send an Ajax request to communicate with the server. Alternatively, when your page is created, save file sizes in boxes and access them when you need them, or a similar solution.

提交回复
热议问题