首页 > php教程 > php手册 > 正文

放大和截取图片

WBOY
发布: 2016-06-21 09:07:02
原创
1311 人浏览过

放大

一:
我有原图
oldimg.PNG
现在要用php对其放小10%或放大200%怎么写代码啊

二:
我有原图
oldimg.PNG
高为200,宽为300
我要在上面剪切
坐标为
10,10,50,30
 X,Y,W,H
用php代码怎么在原图上剪切,生存新的图片啊


1、
$image = "oldimg.PNG"; // 原图
$imgstream = file_get_contents($image);
$im = imagecreatefromstring($imgstream);
$x = imagesx($im);
$y = imagesy($im);

//放大200%,缩小雷同
$thumbw = $x*2; // 期望的目标图宽
$thumbh = $y*2; // 期望的目标图高

if(function_exists("imagecreatetruecolor"))
  $dim = imagecreatetruecolor($thumbw, $thumbh); // 创建目标图gd2
else
  $dim = imagecreate($thumbw, $thumbh); // 创建目标图gd1
imagecopyresized ($dim,$im,0,0,0,0,$thumbw,$thumbh,$x,$y);

header ("Content-type: image/jpeg");
imagejpeg ($dim);
?>
2、
$image = "oldimg.PNG"; // 原图
$imgstream = file_get_contents($image);
$im = imagecreatefromstring($imgstream);
$x = imagesx($im);
$y = imagesy($im);

$thumbw = 50; // 期望的目标图宽
$thumbh = 30; // 期望的目标图高

if(function_exists("imagecreatetruecolor"))
  $dim = imagecreatetruecolor($thumbw, $thumbh); // 创建目标图gd2
else
  $dim = imagecreate($thumbw, $thumbh); // 创建目标图gd1
imagecopyresized ($dim,$im,0,0,10,10,$thumbw,$thumbh,$thumbw,$thumbh);

header ("Content-type: image/jpeg");
imagejpeg ($dim);
?>

 



相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门推荐
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!