What is the best way to detect that a URL is that of an image?

link|improve this question

5  
Best as in, safest, or fastest? – Pekka Dec 14 '10 at 23:46
With or without making a request to it first? – MK_Dev Dec 14 '10 at 23:47
3  
@MK_Dev: You can't detect this without making a request. A server is free to return whatever kind of content it pleases for any URL, regardless of file extension. (There isn't really a concept of file extension for URLs.) – cdhowie Dec 14 '10 at 23:47
With making a request, and by best i mean combination of safest and fastest. – Babiker Dec 14 '10 at 23:58
You should be more elaborate with your question. – dheerosaur Dec 15 '10 at 4:26
feedback

closed as not constructive by Will Apr 1 at 5:15

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

5 Answers

up vote 9 down vote accepted

Using PHP:

  • Safest - fetch the actual image data. Do a getimagesize() to determine the image type by actually reading the header bytes inside the file.

  • Fastest - fetch the resource, parse the response headers and look for the content-type header. This method is not as reliable as the first one: The server could be lying, or misconfigured.

  • Even faster - do a HEAD request on the URL, and look for the content-type header. May not work for dynamic image resources. I have no experience with this, so mileage may vary.

  • Ultra-paranoid safest but slooow - fetch the actual image data using PHP, copy them into a new image resource using the GD library, and save the result. If this process works out, it is guaranteed to be a valid, untainted image. Resource-intensive; some valid image formats that a browser supports but GD does not will fall under the table.

I'd go for the first option.

Using JavaScript:

  • Load the image resource into an img element. If the onload event fires, and the image has physical dimensions afterwards, the browser managed to load the image.
link|improve this answer
The content-type still doesn't guarantee that it really is (for sure); seen occasions when things are mishandled. I like the sturdier getimagesize() check, though. – zanlok Dec 14 '10 at 23:50
1  
Putting the last part (JavaScript) into use: jsfiddle.net/qXTQS – Shadow Wizard Dec 15 '10 at 15:00
feedback

May be look at the HTTP Headers? Just a thought.

link|improve this answer
feedback

Try to check the headers of the response once you have request an HTTP connection of that URL... try to look for the mime-type.

link|improve this answer
3  
Content-Type is the header you're after. – cdhowie Dec 14 '10 at 23:47
@cdhowie yup, thanks. – Cristian Dec 14 '10 at 23:48
feedback
  • inspect headers
  • check for extension in url(.gif/.png etc)
link|improve this answer
1  
The extension will often return correct results, but is not a reliable factor in URLs – Pekka Dec 14 '10 at 23:49
feedback

If you only have the URL rather than the response the server will give you when you request the URL, then the only thing you can do is guess based on the file extension, but there is NO guarantee that a file ending in .jpg is an image or that a file ending in .php is not an image.

You can probably be reasonably happy urls ending in .jpg, .gif, .png etc are going to be images but it is not guaranteed.

For anything else its essentially impossible unless you retrive it.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.