duanchui1279 2013-10-08 09:16
浏览 132
已采纳

使用PHP裁剪图像

I want to cut a picture from Google Charts.

My Code is:

$org_img = "http://chart.googleapis.com/chart?chxl=0:|14%3A00|17%3A00|1:|11|11|11|2:|+&chxp=0,0,1|1,0,1,2&chxr=0,0,8|1,0,8|2,-5,25.5&chxs=0,676767,10,-1,t,FFFFFF|1,676767,10.1,-1,_,676767|2,676767,0,0,_,676767&chxtc=0,2&chxt=x,t,y&chs=515x120&cht=lc&chco=FFCC00&chds=-40,40&chd=t:11,11,11,11,11,11,11,11&chdlp=l&chg=-1,-1,0,1&chls=4&chm=B,FFCB0033,0,0,0,1";
$crop = 40;
$xy_org = getimagesize($org_img);
$x_new = $xy_org[0] - $crop;
$y_new = $xy_org[1] ;
$tmp_img = imagecreatetruecolor($x_new, $y_new);
$src_img = imagecreatefrompng($org_img);
imagecopy($tmp_img, $src_img, 0, 0, $crop, $crop, $x_new, $y_new);
header ("Content-type: image/png");
echo "<img src = '".imagepng($tmp_img, '', 100)."'>";
imagedestroy($tmp_img);

The Problem now is, that i allways get an error in the browser: Resource interpreted as Document but transfered with MIME Type image/png.

Can anybody help me to cut an image ?

I acctually want to cut at the beginning 2 pixel and at the end 2px.

Thanks for your answer.

  • 写回答

1条回答 默认 最新

  • du16178 2013-10-08 09:26
    关注

    Replace echo "<img src = '".imagepng($tmp_img, '', 100)."'>"; with imagepng($tmp_img);.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 鼠标右键,撤销删除 复制 移动,要怎样删除
  • ¥15 使用MATLAB进行余弦相似度计算加速
  • ¥15 服务器安装php5.6版本
  • ¥15 我想用51单片机和数码管做一个从0开始的计数表 我写了一串代码 但是放到单片机里面数码管只闪烁一下然后熄灭
  • ¥20 系统工程中,状态空间模型中状态方程的应用。请猛男来完整讲一下下面所有问题
  • ¥15 我想在WPF的Model Code中获取ViewModel Code中的一个参数
  • ¥15 arcgis处理土地利用道路 建筑 林地分类
  • ¥20 使用visual studio 工具用C++语音,调用openslsx库读取excel文件的sheet问题
  • ¥100 寻会做云闪付tn转h5支付链接的技术
  • ¥15 DockerSwarm跨节点无法访问问题