I'd like to be able to get the file size on an image on a webpage.
So let's say I have an image on the page (that has loaded) like this:
How do I call a function in Javascript (or, even better, jquery) to get the file size (not the dimensions) of the image?
It's important to note that I'm not using any inputs or having users upload the image, there's lots of SO answers on getting image sizes from browse buttons with the file API.
All I want to do is get the file size of any arbitrary image on the page based of it's id and src url.
Edit: I'm dealing with a keep-alive connection for some images so the Content-Length headers are not available.
I'd like to be able to get the file size on an image on a webpage.
So let's say I have an image on the page (that has loaded) like this:
How do I call a function in Javascript (or, even better, jquery) to get the file size (not the dimensions) of the image?
It's important to note that I'm not using any inputs or having users upload the image, there's lots of SO answers on getting image sizes from browse buttons with the file API.
All I want to do is get the file size of any arbitrary image on the page based of it's id and src url.
Edit: I'm dealing with a keep-alive connection for some images so the Content-Length headers are not available.
Share Improve this question edited May 19, 2016 at 1:47 Michael Gaskill 8,04210 gold badges39 silver badges44 bronze badges asked Jan 3, 2014 at 15:50 CafeHeyCafeHey 5,83019 gold badges88 silver badges147 bronze badges 9- 2 possible duplicate of Determining image file size + dimensions via Javascript? – Joren Commented Jan 3, 2014 at 15:53
- Only way I know how to do that is to use AJAX to call the file and get the content-length header and process it. – Eli Gassert Commented Jan 3, 2014 at 15:53
- @Popnoodles, that's not what the OP has asked. In fact, the question even clarifies "(not the dimensions)." – rgthree Commented Jan 3, 2014 at 16:01
- an ajax head request's content-length header will give you the info you need. – dandavis Commented Jan 3, 2014 at 16:09
- 1 if you can't do the ajax HEAD, you have to do a binary ajax and look at the size of the response. – dandavis Commented Jan 3, 2014 at 16:44
4 Answers
Reset to default 3You can't directly get the file size (or any data from it).
The only way is a bit dirty, because you have to do a XMLHTTPRequest (and it probably won't work with externals images, according to the "Cross Origin Resource Sharing"). But with the browser's cache, it should not cause another HTTP request.
var xhr = new XMLHttpRequest();
xhr.open("GET", "foo.png", true);
xhr.responseType = "arraybuffer";
xhr.onreadystatechange = function() {
if(this.readyState == this.DONE) {
alert("Image size = " + this.response.byteLength + " bytes.");
}
};
xhr.send(null);
Here is a React version that worked for me, posting it in the event that it could save some time.
Form field
<input type="file"
name="file"
id="file"
multiple="multiple"
onChange={onChangeHandler}
className="fileUp" />
JSX
const onChangeHandler = event => {
console.log(event.target.files[0].size);
}
Old question but here is my take: I had the same issue but didn't want te rely on buffering to prevent my app from downloading the images twice (as the accepted answer does). What I ended up doing was fetch the file as a blob, read the file size, and use the blob as image source from there on. this was easily done with the URL.createObjectURL()
function like so:
let img = new Image()
img.crossOrigin = "Anonymous"; // Helps with some cross-origin issues
fetch('foo.png')
.then(response => response.blob())
.then(blob => { img.src = URL.createObjectURL(blob); })
This looks a lot cleaner and perhaps it can still be useful for some.
Assuming you could use HTML5
- Create a canvas
- Put image in there
- Grab the image data with
.toDataURLHD()
- Grab the base64 encoded string
- Use some mad calculation to get the image size in bytes.
Have fun!
Maybe it's a lot easier to use a server side script, so it won't be HTML5-dependant
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743697383a4491982.html
评论列表(0条)