Images not displayed when moving site to local

Well images are basically stored “wp_posts”. Links of each image are stored in “guid” column of the table.

try this in your DB

SELECT * FROM `wp_posts` ORDER BY `wp_posts`.`guid` ASC

So the problem is clear – the links doesnt match.
To get rid of the problem simply manually reselect each image from your current setup. Thats it.