Itulah yang saya lakukan. cukup efisien dan bersih:
1) Pertama, Anda perlu menyuntikkan kelas-kelas berikut:
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) Kemudian, buat metode getImageUrl dengan kode di bawah ini:
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;
}
Catatan: Kode "appEmulation" hanya diperlukan ketika Anda melakukan panggilan ini dari admin atau untuk API . Jika tidak, Anda akan mendapatkan kesalahan di bawah ini (atau serupa):
Unable to resolve the source file for 'webapi_rest/_view/en_AU/Magento_Catalog/images/product/placeholder/.jpg'
3) Panggil getImageUrl lewat objek produk dan jenis gambar yang Anda inginkan (berdasarkan file view.xml Anda )
...
$smallImage = $this->getImageUrl($productObject, 'product_page_image_small');
...