Getting product Image url in Magento 2

Solution for : Getting product Image url in Magento 2.

We can get using below simple lines:

1
2
3
4
$imagehelper = $objectManager->create('Magento\Catalog\Helper\Image');
$image = $imagehelper->init($_product,'category_page_list')->constrainOnly(FALSE)->keepAspectRatio(TRUE)->keepFrame(FALSE)->resize(400)->getUrl();
 
echo '<img src="'.$image.'">';

No comments:

Post a Comment