मैंने ऐसा ही किया। यह काफी कुशल और साफ है:
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');
...