Chinaunix首页 | 论坛 | 博客
  • 博客访问: 20979
  • 博文数量: 7
  • 博客积分: 250
  • 博客等级: 二等列兵
  • 技术积分: 82
  • 用 户 组: 普通用户
  • 注册时间: 2005-10-10 23:50
文章分类

全部博文(7)

文章存档

2011年(1)

2009年(1)

2008年(1)

2006年(3)

2005年(1)

我的朋友
最近访客

分类:

2005-10-10 23:50:24

function resizejpg($imgsrc,$imgdst,$imgwidth,$imgheight){ //$imgsrc jpg格式图像路径 $imgdst jpg格式图像保存文件名 $imgwidth要改变的宽度 $imgheight要改变的高度
      $imgsrc=$imgsrc;
      $arr=getimagesize($imgsrc);                     //取得图片的宽度,高度值
      //header("Content-type: image/jpg");
      $imgWidth=$imgwidth;
      $imgHeight=$imgheight;
      // Create image and define colors
      $imgsrc=imagecreatefromjpeg( $imgsrc);
      $image=imagecreatetruecolor($imgWidth, $imgHeight);  //创建一个彩色的底图
      imagecopyresampled ( $image, $imgsrc, 0, 0, 0, 0,$imgWidth,$imgHeight,$arr[0], $arr[1]);
      imagepng($image,$imgdst);
      imagedestroy($image);
}

阅读(1508) | 评论(0) | 转发(0) |
0

上一篇:没有了

下一篇:开始学习模板技术

给主人留下些什么吧!~~