获取产品相关图像Magento的完整缓存路径

问题描述:

,我的代码中包含了完整的缓存缩略图和主图像路径,但是我想获取相对的完整缓存路径* 图片 *也请提出一些想法

Hi i have got the full cached thumbnail and main image path with my code But i want to get the full cached path of relative *image* also Please suggest some ideas

  <?php
@ob_start();
@session_start();
ini_set('display_errors', 1);
//for order update
include '../../../../app/Mage.php';
Mage::app('default');
echo '<pre>';
if(isset($_REQUEST['productid'])){
$productId = $_REQUEST['productid'];
}else{

$productId = '12402'; // product ID 10 is an actual product, and used here for a test
}
$product = Mage::getModel('catalog/product')->load($productId);  //load the product     
echo 'product_id '.'=>'.$product->getId().'<br/>';                                        

echo 'created_at '.'=>'.$product->getcreated_at().'<br/>';   
echo 'description '.'=>'.$product->getdescription().'<br/>'; 
echo 'short_description '.'=>'.$product->getshort_description().'<br/>'; 
echo 'sku'.'=>'.$product->getsku().'<br/>'; 
 'media_gallery'.'=>'.$product->getmedia_gallery().'<br/>'; 
print_r($product->getmedia_gallery());
?>
<?php 
$image = Mage::helper('catalog/image')->init($product, 'image');
$image1 = str_replace('/webApps/migration/productapi/new/','/',$image);
//echo '<img id="image" src="'.$image1.'"  />';
echo 'image => '.$image1.'<br/>';


$thumbnail = Mage::helper('catalog/image')->init($product, 'thumbnail');
$thumbnail1 = str_replace('/webApps/migration/productapi/new/','/',$thumbnail);
echo 'thumbnail => '.$thumbnail1.'<br/>';
?> 

* 具有此代码 *我获得了产品相对 * 图片 * 完整路径

*with this code* i got the product relative *images* full path

 <?php
    @ob_start();
    @session_start();
    ini_set('display_errors', 1);
    //for order update
    include '../../../../app/Mage.php';
    Mage::app('default');
    echo '<pre>';
    if(isset($_REQUEST['productid'])){
    $productId = $_REQUEST['productid'];
    }else{

    $productId = '12402'; // product ID 10 is an actual product, and used here for a test
    }
    $product = Mage::getModel('catalog/product')->load($productId);  //load the product     
    echo 'product_id '.'=>'.$product->getId().'<br/>';                                        

    echo 'created_at '.'=>'.$product->getcreated_at().'<br/>';   
    echo 'description '.'=>'.$product->getdescription().'<br/>'; 
    echo 'short_description '.'=>'.$product->getshort_description().'<br/>'; 
    echo 'sku'.'=>'.$product->getsku().'<br/>'; 

     if (count($product->getMediaGalleryImages()) > 0){
          foreach ($product->getMediaGalleryImages() as $_image){
              $thumbnail12 = Mage::helper('catalog/image')->init($product->getProduct(), 'image', $_image->getFile())->resize(2000);
              $thumbnail13 = str_replace('/webApps/migration/productapi/new/','/',$thumbnail12);
              echo 'thumbnail => '.$thumbnail13.'<br/>';
               }
                            }

    ?>