PHP GD图像透视图
Posted
技术标签:
【中文标题】PHP GD图像透视图【英文标题】:PHP GD image perspective 【发布时间】:2009-10-01 12:22:30 【问题描述】:您好,是否可以转换图像透视图。所以它的新形状是等腰梯形? 我看到了一个使用 Imagick 的解决方案,但这可能涉及重写我的整个图像处理脚本......(更不用说学习了,我对此很过敏)
【问题讨论】:
【参考方案1】:我已经改进了詹姆斯发布的功能。
添加:
垂直/水平透视支持 透明度 现在看起来更像是 3d 中的旋转对象(越近的对象越大,越远的对象越小)这是我的功能:
define("TOP",0);
define("BOTTOM",1);
define("LEFT",2);
define("RIGHT",3);
function perspective($i,$gradient=0.85,$rightdown=TOP,$background=0xFFFFFF, $alpha=0)
$w=imagesx($i);
$h=imagesy($i);
$col=imagecolorallocatealpha($i,($background>>16)&0xFF,($background>>8)&0xFF,$background&0xFF,$alpha);
$mult=5;
$li=imagecreatetruecolor($w*$mult,$h*$mult);
imagealphablending($li,false);
imagefilledrectangle($li,0,0,$w*$mult,$h*$mult,$col);
imagesavealpha($li,true);
imagecopyresized($li,$i,0,0,0,0,$w*$mult,$h*$mult,$w,$h);
imagedestroy($i);
$w*=$mult;
$h*=$mult;
$image=imagecreatetruecolor($w,$h);
imagealphablending($image,false);
imagefilledrectangle($image,0,0,$w,$h,$col);
imagealphablending($image,true);
imageantialias($image,true);
$test=$h*$gradient;
$rdmod=$rightdown%2;
$min=1;
if($rightdown<2)
for($y=0;$y<$h;$y++)
$ny=$rdmod? $y : $h-$y;
$off=round((1-$gradient)*$w*($ny/$h));
$t=((1-pow(1-pow(($ny/$h),2),0.5))*(1-$gradient)+($ny/$h)*$gradient);
$nt=$rdmod? $t : 1-$t;
if(abs(0.5-$nt)<$min)
$min=abs(0.5-$nt);
$naty=$off;
imagecopyresampled($image,$li,
round($off/2),$y,
0,abs($nt*$h),
$w-$off,1,
$w,1);
else
for($x=0;$x<$w;$x++)
$nx=$rdmod? $x : $w-$x;
$off=round((1-$gradient)*$h*($nx/$w));
$t=((1-pow(1-pow(($nx/$w),2),0.5))*(1-$gradient)+($nx/$w)*$gradient);
$nt=$rdmod? $t : 1-$t;
if(abs(0.5-$nt)<$min)
$min=abs(0.5-$nt);
$natx=$off;
imagecopyresampled($image,$li,
$x,round($off/2),
abs($nt*$w),0,
1,$h-$off,
1,$h);
imagedestroy($li);
imageantialias($image,false);
imagealphablending($image,false);
imagesavealpha($image,true);
$i=imagecreatetruecolor(($w+$naty)/$mult,($h+$natx)/$mult);
imagealphablending($i,false);
imagefilledrectangle($i,0,0,($w+$naty)/$mult,($h+$natx)/$mult,$col);
imagealphablending($i,true);
imageantialias($i,true);
imagecopyresampled($i,$image,0,0,0,0,($w+$naty)/$mult,($h+$natx)/$mult,$w,$h);
imagedestroy($image);
imagealphablending($i,false);
imageantialias($i,false);
imagesavealpha($i,true);
return $i;
例子:
Original image: http://imgur.com/iX5Aski
使用功能:
$img=perspective($img,0.5,TOP,0xFFFFFF,127);
结果:
$img=perspective($img,0.2,RIGHT,0xFFFFFF,127);
结果:
【讨论】:
这是 A-W-E-S-O-M-E,谢谢@Daniel @Daniel 如果您也添加一些评论,那就太好了。【参考方案2】:GD 不支持 3D 图像处理 :( 使用 ImageMagick 的解决方案并不复杂:http://valokuva.org/?p=112
【讨论】:
链接失效,但这是最新的缓存:web.archive.org/web/20130424232913/http://valokuva.org/?p=112以上是关于PHP GD图像透视图的主要内容,如果未能解决你的问题,请参考以下文章