我正在显示适合175x175画面的任何尺寸的图像,因此它会在类别页面上丢失其原始形状。
我希望在调整大小后显示类别图像,以便调整和显示产品图像。
我如何在Magento 1.7.0.2中执行此操作?
答案 0 :(得分:1)
你将不得不使用Magento的图像库进行手动调整大小,herwes就是一个例子(http://blog.chapagain.com.np/magento-resize-image/):
// actual path of image
$imageUrl = Mage::getBaseDir('media').DS."myimage".DS.$post->getThumbnail();
// path of the resized image to be saved
// here, the resized image is saved in media/resized folder
$imageResized = Mage::getBaseDir('media').DS."myimage".DS."resized".DS.$post->getThumbnail();
// resize image only if the image file exists and the resized image file doesn't exist
// the image is resized proportionally with the width/height 135px
if (!file_exists($imageResized)&&file_exists($_imageUrl)) :
$imageObj = new Varien_Image($_imageUrl);
$imageObj->constrainOnly(TRUE);
$imageObj->keepAspectRatio(TRUE);
$imageObj->keepFrame(FALSE);
$imageObj->resize(135, 135);
$imageObj->save($imageResized);
endif;
$newImageUrl = Mage::getBaseUrl('media')."catalog/category/resized/".$imageName;
如果你看看Varien_Image,你会发现有一些不同的方法来帮助调整图像大小。不幸的是,没有帮助可以使用,因为有产品图像,虽然这样做帮助并不困难。