最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

image - How to get <img> content-type using javascript after loading - Stack Overflow

programmeradmin1浏览0评论

In my HTML document, there is a image

<img src=";d=identicon&r=PG&f=1"/>

When open this document in browser, E.g. Chrome, we can find the Content-Type of this image is "image/png" in Chrome Developer Tools -> Network tab according to the HTTP response headers.

How can I get the Content-Type using JavaScript after the image loading.

More specifically, what I need is a function like below.

/**
 * @param  {HTMLImageElement} img
 * @return {String}     the content type, e.g. "image/png", "image/svg+xml"
 */
getImgContentType(img) {
    // TODO
}

In my HTML document, there is a image

<img src="https://www.gravatar./avatar/1d9c87a4d5cbcae4c76e867cb6861fa0?s=48&d=identicon&r=PG&f=1"/>

When open this document in browser, E.g. Chrome, we can find the Content-Type of this image is "image/png" in Chrome Developer Tools -> Network tab according to the HTTP response headers.

How can I get the Content-Type using JavaScript after the image loading.

More specifically, what I need is a function like below.

/**
 * @param  {HTMLImageElement} img
 * @return {String}     the content type, e.g. "image/png", "image/svg+xml"
 */
getImgContentType(img) {
    // TODO
}
Share Improve this question edited Sep 29, 2018 at 15:42 kboul 14.6k5 gold badges47 silver badges58 bronze badges asked Apr 18, 2017 at 9:03 GentleMintGentleMint 952 silver badges9 bronze badges 7
  • Could you use console.log and find out yourself? – evolutionxbox Commented Apr 18, 2017 at 9:04
  • How are you loading image, just <img> tag im HTML or via JS? – dfsq Commented Apr 18, 2017 at 9:06
  • Make a XMLHttpRequest of type HEAD to the url of the image. – ibrahim mahrir Commented Apr 18, 2017 at 9:08
  • 1 .... which is only possible within the limits of CORS, of course :-) – devnull69 Commented Apr 18, 2017 at 9:11
  • @ibrahimmahrir - "type HEAD to the URL of the image"? – evolutionxbox Commented Apr 18, 2017 at 9:11
 |  Show 2 more ments

2 Answers 2

Reset to default 5

You will need to make HEAD request to fetch headers. Here is another simple version using fetch API could look like this:

getImgContentType (img) {
  return fetch(img.src, { method: 'HEAD' })
    .then(response => response.headers.get('Content-type'))
}

And usage would be:

obj.getImgContentType().then(type => {
  console.log(type)
})

Also note, that getImgContentType's interface needs to be asynchronous. It's convenient to return promise.

Using a XMLHttpRequest of type HEAD (type HEAD means that the request will only recieve the header data, the image won't be redownloaded):

getImgContentType(img) {
    var xhr = new XMLHttpRequest();
    xhr.open("HEAD", img.src, true);
    xhr.onreadystatechange = function() {
        if (this.readyState == this.DONE) {
            console.log(xhr.getResponseHeader("Content-Type"));   // type
            console.log(xhr.getResponseHeader("Content-Length")); // size
            // ...
        }
    };
    xhr.send();
}

Just note that not all servers implement HEAD requests.

发布评论

评论列表(0)

  1. 暂无评论