码迷,mamicode.com
首页 > 其他好文 > 详细

生成缩略图

时间:2017-08-01 09:51:04      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:height   idt   ddr   color   create   led   size   eww   位置   

function ResizeImage($im,$maxwidth,$maxheight,$name){
  $smalladdrname="../upfile/";//缩略图存放目录位置
  $RESIZEWIDTH=‘720‘;//定义最大宽
  $RESIZEHEIGHT=‘285‘;//定义最大高
  $width = imagesx($im);
  $height = imagesy($im);
  if(($maxwidth && $width > $maxwidth) || ($maxheight && $height > $maxheight)){

    $newwidth = 720;
    $newheight = 285;
  if(function_exists("imagecopyresampled")){
    $newim = imagecreatetruecolor($newwidth, $newheight);
    imagecopyresampled($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
  }else{
    $newim = imagecreate($newwidth, $newheight);
    imagecopyresized($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
  }
    ImageJpeg ($newim,$smalladdrname.$name);
    ImageDestroy ($newim);
  }else{
    ImageJpeg ($im,$smalladdrname.$name);
  }
}

生成缩略图

标签:height   idt   ddr   color   create   led   size   eww   位置   

原文地址:http://www.cnblogs.com/www-xiaobo-com/p/7266829.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!