oscommerce:将拇指图像更改为原始产品图像

时间:2010-03-16 11:26:25

标签: image thumbnails oscommerce

我希望不要将新产品图像更改为原始图像。

当我上传产品图片时,图片会被打扰,所以有任何帮助吗?

1 个答案:

答案 0 :(得分:0)

我们将tep_image函数修改为接受-1,这意味着它只输出“height”或“width”约束,但不能同时输出两者。您可以根据自己的喜好对其进行修改,但是您想查看包含/ functions / html_output.php的tep_image()

    // The HTML image wrapper function
  function tep_image($src, $alt = '', $width = '', $height = '', $parameters = '') {
    if ( (empty($enter code heresrc) || ($src == DIR_WS_IMAGES)) && (IMAGE_REQUIRED == 'false') ) {
      return false;
    }

    if($src=='images/')
        $src='images/noimage.jpg';
// alt is added to the img tag even if it is null to prevent browsers from outputting
// the image filename as default
    $image = '<img src="' . tep_output_string($src) . '" border="0" alt="' . tep_output_string($alt) . '"';

    if (tep_not_null($alt)) {
      $image .= ' title=" ' . tep_output_string($alt) . ' "';
    }
        if(((int)$height==-1) && ((int)$width)==-1){
          $image .= '';
        }elseif((!empty($width) && ((int)$height)==-1)){
          $image .= ' width="' . tep_output_string($width) . '" ';
        }elseif((!empty($height) && ((int)$width)==-1)){
          $image .= ' height="' . tep_output_string($height) . '" ';
        }else{
            if ( (CONFIG_CALCULATE_IMAGE_SIZE == 'true') && (empty($width) || empty($height)) ) {
              if ($image_size = @getimagesize($src)) {
                if (empty($width) && tep_not_null($height)) {
                  $ratio = $height / $image_size[1];
                  $width = intval($image_size[0] * $ratio);
                } elseif (tep_not_null($width) && empty($height)) {
                  $ratio = $width / $image_size[0];
                  $height = intval($image_size[1] * $ratio);
                } elseif (empty($width) && empty($height)) {
                  $width = $image_size[0]; 
                  $height = $image_size[1];
                }
              } elseif (IMAGE_REQUIRED == 'false') {
                return false;
              }
            }
            if (tep_not_null($width) && tep_not_null($height)) {
              $image .= ' wddidth="' . tep_output_string($width) . '" height="' . tep_output_string($height) . '"';
            }
        }  

    if (tep_not_null($parameters)) $image .= ' ' . $parameters;

    $image .= '>';

    return $image;
  }