What is the best way to detect that a URL is that of an image?
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.
|
Using PHP:
I'd go for the first option. Using JavaScript:
| |||||||
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. | |||||||
feedback
|
| |||||
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. | |||
|
feedback
|