Not sure what you want, but if you want to get all the images of a specific page, you can use
$parent='your page id'; $args=array( 'post_parent' => $parent, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => -1 ); $images = get_children($args);
You can insert this code into your loop, and if you provide the corresponding page_id as parent , then you will get all the images as an array in $images and you can start the loop.
More details in Codex .
Update:
To get only your favorite image, you can use
echo get_the_post_thumbnail('page id here', 'thumbnail');
More details in Codex .
source share