Get Image Having the ID [closed]

Put the below code in your functions.php and then you can use this [get_image_by_id id="your-image-id"] shortcode to get the image

add_shortcode( 'get_image_by_id', 'the_dramatist_get_image_by_id');

function the_dramatist_get_image_by_id($atts) {
    return wp_get_attachment_image($atts['id']);
}

Here "your-image-id" is numeric ID of the image.

Hope that helps.