Skip to content

Instantly share code, notes, and snippets.

@cgdangelo
Created January 15, 2014 17:46
Show Gist options
  • Save cgdangelo/8440872 to your computer and use it in GitHub Desktop.
Save cgdangelo/8440872 to your computer and use it in GitHub Desktop.
<?php
$basePath = Mage::getBaseDir('media') . DS . 'catalog' . DS . 'category' . DS;
$imagePath = Mage::registry('current_category')->getLogoImage();
$image = new Varien_Image($basePath . $imagePath);
$image->keepAspectRatio(true);
$image->keepTransparency(true);
$image->constrainOnly(true);
?>
<img src="<?php $image->resize(200, 100); ?>"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment