So habe ich es gemacht. es ist sehr effizient und sauber:
1) Zuerst müssen Sie die folgenden Klassen injizieren:
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) Erstellen Sie anschließend eine getImageUrl-Methode mit dem folgenden Code:
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;
}
Hinweis: Der Code "appEmulation" ist nur erforderlich, wenn Sie diesen Aufruf vom Administrator oder für eine API ausführen . Andernfalls erhalten Sie den folgenden (oder einen ähnlichen) Fehler:
Unable to resolve the source file for 'webapi_rest/_view/en_AU/Magento_Catalog/images/product/placeholder/.jpg'
3) Rufen Sie die getImageUrl auf und übergeben Sie das Produktobjekt und den gewünschten Bildtyp (basierend auf Ihrer view.xml- Datei).
...
$smallImage = $this->getImageUrl($productObject, 'product_page_image_small');
...