Así lo hice yo. Es bastante eficiente y limpio:
1) Primero, debe inyectar las siguientes clases:
protected $_storeManager;
protected $_appEmulation;
protected $_blockFactory;
public function __construct(
...
\Magento\Store\Model\StoreManagerInterface $storeManager,
\Magento\Framework\View\Element\BlockFactory $blockFactory,
\Magento\Store\Model\App\Emulation $appEmulation)
{
$this->_storeManager = $storeManager;
$this->_blockFactory = $blockFactory;
$this->_appEmulation = $appEmulation;
}
2) Luego, crea un método getImageUrl con el siguiente código:
protected function getImageUrl($product, string $imageType = '')
{
$storeId = $this->_storeManager->getStore()->getId();
$this->_appEmulation->startEnvironmentEmulation($storeId, \Magento\Framework\App\Area::AREA_FRONTEND, true);
$imageBlock = $this->_blockFactory->createBlock('Magento\Catalog\Block\Product\ListProduct');
$productImage = $imageBlock->getImage($product, $imageType);
$imageUrl = $productImage->getImageUrl();
$this->_appEmulation->stopEnvironmentEmulation();
return $imageUrl;
}
Nota: El código "appEmulation" solo es necesario cuando realiza esta llamada desde el administrador o para una API . De lo contrario, obtendrá el siguiente error (o similar):
Unable to resolve the source file for 'webapi_rest/_view/en_AU/Magento_Catalog/images/product/placeholder/.jpg'
3) Llame a getImageUrl pasando el objeto del producto y el tipo de imagen que desea (según su archivo view.xml )
...
$smallImage = $this->getImageUrl($productObject, 'product_page_image_small');
...