What is the difference between "image/png" and "image/x-png"?
|
feedback
|
|
The
This is also documented in the PNG specification. See FalseVinylShrub's answer. | |||||||||
feedback
|
|
According to http://www.w3.org/TR/PNG/#A-Media-type
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. | |||||||||||
feedback
|
|
According to Wikipedia's article on Internet Media Types, and the article it cites...
So my guess is "image/x-png" is probably leftover from the days when png was pretty new, and as such, not standardized. | |||||||
feedback
|
|
image/x-png was the type before PNG was accepted by the IANA as an official mime type. http://www.iana.org/assignments/media-types/image/ The official image/png MIME type for PNG, approved on 14 October 1996 | |||
|
feedback
|
|
What is the difference between "image/png" and "image/x-png"? Here's my experience: I am using the ColdFusion ver 8 language to upload images, and if I upload a .png file, the upload works fine. But -- if I change the file extension of the .png file to .gif -- and then try to upload it, it doesn't work and Cold Fusion returns an error. But if I add "image/x-png" to the list of acceptable file types in the CF upload tag, then it will upload a file with a .gif extension, even though the file is actually a .png. So maybe the "x" in the image type means "it's not actually a "png", it's just masquerading as one... | |||
|
feedback
|