นั่นคือวิธีที่ฉันทำ มันค่อนข้างมีประสิทธิภาพและสะอาด:
1) ก่อนอื่นคุณต้องฉีดคลาสต่อไปนี้:
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) จากนั้นสร้างเมธอด getImageUrl ด้วยโค้ดด้านล่าง:
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;
}
หมายเหตุ: "appEmulation รหัส" เป็นสิ่งที่จำเป็นเฉพาะเมื่อคุณทำให้สายนี้จากผู้ดูแลระบบหรือสำหรับAPI มิฉะนั้นคุณจะได้รับข้อผิดพลาดด้านล่าง (หรือคล้ายกัน):
Unable to resolve the source file for 'webapi_rest/_view/en_AU/Magento_Catalog/images/product/placeholder/.jpg'
3) เรียกใช้ getImageUrl ผ่านวัตถุผลิตภัณฑ์และประเภทของภาพที่คุณต้องการ (ขึ้นอยู่กับไฟล์view.xmlของคุณ)
...
$smallImage = $this->getImageUrl($productObject, 'product_page_image_small');
...