Skip to content

Instantly share code, notes, and snippets.

@nahidacm
Created March 27, 2013 11:54
Show Gist options
  • Save nahidacm/5253662 to your computer and use it in GitHub Desktop.
Save nahidacm/5253662 to your computer and use it in GitHub Desktop.
<?php
$img_location = Mage::getBaseDir('media'). '/igallery'.$file_path;
$imageResized = Mage::getBaseDir('media'). '/igallery/resized'.$file_path;
$image= new Varien_Image($img_location);
$image->resize(80, 80);
$image->save($imageResized);
echo '<img src="'.Mage::getBaseUrl('media'). 'igallery'.$value['file'].'" />';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment