Takže raději použiju file_get_contents().
Takhle by to tedy mohlo fungovat?
// Create DOM from URL or file
$html = file_get_contents('http://worldoftanks.eu/community/accounts/508009016-zupan83/');
// Find all images
foreach($html->find('img') as $element)
echo $element->src . '<br>';
Tohle je jen slátanina toho, co jsem našel na googlu. Jen by mně zajímalo, jestli by to takhle mohlo fungovat.