Đó là cách tôi đã làm. Nó khá hiệu quả và sạch sẽ:
1) Trước tiên, bạn cần tiêm các lớp sau:
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) Sau đó, tạo phương thức getImageUrl với mã dưới đây:
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;
}
Lưu ý: Mã "appEmulation" chỉ cần thiết khi bạn thực hiện cuộc gọi này từ quản trị viên hoặc cho API . Nếu không, bạn sẽ nhận được lỗi bên dưới (hoặc tương tự):
Unable to resolve the source file for 'webapi_rest/_view/en_AU/Magento_Catalog/images/product/placeholder/.jpg'
3) Gọi getImageUrl truyền đối tượng sản phẩm và loại hình ảnh bạn muốn (dựa trên tệp view.xml của bạn )
...
$smallImage = $this->getImageUrl($productObject, 'product_page_image_small');
...