È così che ho fatto. è abbastanza efficiente e pulito:
1) Innanzitutto, è necessario iniettare le seguenti classi:
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) Quindi, crea un metodo getImageUrl con il codice seguente:
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: Il codice "appEmulation" è necessario solo quando si fare questa chiamata dalla amministrazione o per un API . Altrimenti, visualizzerai l'errore di seguito (o simile):
Unable to resolve the source file for 'webapi_rest/_view/en_AU/Magento_Catalog/images/product/placeholder/.jpg'
3) Chiama getImageUrl passando l'oggetto prodotto e il tipo di immagine che desideri (basato sul tuo file view.xml )
...
$smallImage = $this->getImageUrl($productObject, 'product_page_image_small');
...