What is the difference between “image/png” and “image/x-png”?

前端 未结 4 789
迷失自我
迷失自我 2020-12-03 16:43

What is the difference between \"image/png\" and \"image/x-png\"?

4条回答
  •  春和景丽
    2020-12-03 17:13

    According to http://www.w3.org/TR/PNG/#A-Media-type

    The internet media type "image/png" is the Internet Media Type for PNG [RFC-2045], [RFC-2048]. It is recommended that implementations also recognize the media type "image/x-png".

    So, if you're delivering or uploading a PNG image, 'image/png' is the correct one to use. However, if you're accepting uploads or otherwise interpreting the media type, you are recommended to accept either.

    By the way, I found a reference from 2008 that Internet Explorer (version unspecified) was uploading PNG images with a type of image/x-png, so this was a real issue for someone as recently as that.

提交回复
热议问题