You can use
<img [^>]*src="([^"]+)"
and take the first capturing group.
EDIT: By the way this assumes that you would not start a tag without properly closing it. Perhaps better is
<img [^>]*src="([^"]+)"[^>]*>
EDIT 2: It is unclear what you are trying to achieve, and I get the feeling I am wasting my time trying to help you. In your edit, you wrote that you tried:
preg_match_all('/(href|src)\s*=\s*"([^\s]+\/\/[^\/]+.\/[^\s]+\.(jpg|jpeg|png|gif|bmp))/ixu'
Why is there no mention of img? Why do you include href, when img tags do not take the href attribute? It seems as though you are more interested in checking whether something is a valid image URL than in matching some URL that is specified inside an img tag. Note that the regex I provided does not check the validity of the URL; it just goes based on the fact that whatever appears in quotes in the src attribute is expected to be a valid URL. I did it this way because it is a practical assumption in many situations, and you weren't specific about what you really want. I will not update further if you can't ask a better question.