Magento – get product small image url not working with resize

image

i want to get product image url from id

i wrote below code but it not working

$baseproductimage = Mage::getModel('catalog/product')->load('223')->getSmallImage()->resize($list_image_width,$list_image_height);

Best Answer

Try this

<?php $products = Mage::getModel('catalog/product')->load('223'); ?>
<?php echo Mage::helper('catalog/image')->init($products,'small_image')->resize($list_image_width,$list_image_height); ?>
Related Topic