码迷,mamicode.com
首页 > Web开发 > 详细

PHP图片操作

时间:2016-07-14 21:58:33      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:

<?php
$filename="http://pic.nipic.com/2007-12-06/2007126102233577_2.jpg";//图片地址
//获取图片信息
$info=getimagesize($filename);
//获取图片类型
$type=image_type_to_extension($info[2],false);
//在内存中建立一个和图片类型一样的图像
$fun="imagecreatefrom{$type}";
//把图片复制到内存
$image=$fun($filename);
//操作图片
//1、在内存中建立一个宽300高200的真色彩图片
$image_thumb=imagecreatetruecolor(150, 100);
//2、将原图复制到新建的真色彩图片上,并且按照一定的比例压缩
// imagecopyresampled(dst_image, src_image, dst_x, dst_y, src_x, src_y, dst_w, dst_h, src_w, src_h)
imagecopyresampled($image_thumb, $image, 0, 0, 0, 0, 150, 100, $info[0], $info[1]);
//3、销毁原始图片
imagedestroy($image);
//把图片输出到浏览器
header("Content-type:".$info[‘mime‘]);
$funs="image{$type}";
$funs($image_thumb);
//保存到硬盘中
$funs($image_thumb,"thumb_image.".$type);
imagedestroy($image_thumb);
 ?>

PHP图片操作

标签:

原文地址:http://www.cnblogs.com/mracale/p/5671712.html

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