我一直在寻找一种基于GD的解决方案,用于为图像添加透视变换,并最终找到一些看似有希望的东西:http://www.jqueryit.com/2010/03/set-perspective-of-image-using-php-gd.html
但是,我不确定如何使用此功能实际生成新图像。我的方法是:
function perspective($i,$gradient=0.85,$rightdown=true,$background=0xFFFFFF) {
$mult=5;
$w=imagesx($i);
$h=imagesy($i);
$image=imagecreatetruecolor($w*$mult,$h*$mult);
imagecopyresized($image,$i,0,0,0,0,$w*$mult,$h*$mult,$w,$h);
imagedestroy($i);
$w*=$mult;
$h*=$mult;
$im=imagecreatetruecolor($w,$h);
$background=imagecolorallocate($im,($background>>16)&0xFF,($background>>8)&0xFF,$background&0xFF);
imagefill($im,0,0,$background);
imageantialias($im,true);
$nh=$h-($h*$gradient);
for ($x=0; $x<$w; $x++) {
$ni=(($rightdown) ? $x : $w-$x);
$p=intval($h-(($ni/$w)*$nh));
if (($p%2)<>0)
$p-=1;
$nx=intval(($p-$h)/2);
imagecopyresampled($im,$image,$x,0,$x,$nx,1,$p,1,$h-1);
imageline($im,$x,0,$x,-$nx-1,$background);
imageline($im,$x,$h-1,$x,$h+$nx,$background);
}
imagedestroy($image);
imagefilter($im,IMG_FILTER_SMOOTH,10);
$i=imagecreatetruecolor($w/$mult,$h/$mult);
imageantialias($i,true);
imagecopyresampled($i,$im,0,0,0,0,$w,$h,$w*$mult,$h*$mult);
imagedestroy($im);
return $i;
}
$image = perspective("my_image.jpg");
imagejpeg($image , "my_image_converted.jpg");
不幸的是,它没有产生输出。我做错了什么?
答案 0 :(得分:1)
因为当函数需要图像资源时,您无法仅传递文件名。尝试:
$image = perspective(imagecreatefromjpeg("my_image.jpg"));
仔细阅读您从链接中获取的功能,并具体查看调用imagecopyresized()的位置。
答案 1 :(得分:0)
如果您只是想显示它,您应该能够更改标题并回显图像。
header("Content-Type: image/jpg");
echo imagejpeg($image , "my_image_converted.jpg");
客户端浏览器将像任何其他jpg一样加载它。