DEV Community

Discussion on: Celery progress bar in React

Collapse
 
iamtekson profile image
Tek Kshetri

For getting the size of the image, you can write the following piece of code to get the file size,

fileChangedHandler = (event) => {
    let file_size = event.target.files[0].size;
}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
allaye profile image
Allaye

Hi thanks for your reply, but am corrently looking for how to implement this in a django backend