How to get full size featured image of post

Here is the code to get full size image of a wordpress post by post id

<?php  $image_src = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full', false ); ?>

Below is the code to display image:

<img src="<?php echo $image_src[0]; ?>">