Need to get array of images ID attached to post

Use this function get_attached_media

$images = get_attached_media( 'image' );

You can also pass as a second parameter the ID of a post.

This function returns and array of Post object, the ID is in the ID property.