To whos profile the image owner? But yea shouldnt be a problem.
To get it to link to the persons profle you need to edit medium_random.php
find
Code:
select bigimage,cat,id,title,user,description,medwidth,medheight
and replace it with
Code:
select bigimage,cat,id,title,user,description,medwidth,medheight,userid
then find
Code:
$bigimage,$cat,$id,$title,$user,$description,$medwidth,$medheight
and replace it with
Code:
$bigimage,$cat,$id,$title,$user,$description,$medwidth,$medheight,$userid
Then find
Code:
<strong>$user</strong>
and replace it with
Code:
<strong><a href="http://www.yoursite.com/member.php?u=$userid">$user</a></strong>
You may need to alter the url structure to replicate yours (if you have your vbulletin in a subfolder for instance)
But this will do what you want.