图像翻转使用PHP

时间:2012-09-24 14:27:25

标签: php php-gd

我提供了php gd版本2的托管计划,我无法安装任何其他库。我知道图像翻转可以通过使用imagesx()imagesy()和imagecreatetruecolor()完成,但它们在GD版本2中不可用。我无法升级到更高版本。  那么,有没有其他方法可以使用php gd版本2或仅使用php水平和垂直翻转图像?万分感谢。

1 个答案:

答案 0 :(得分:0)

也许这会有所帮助......你需要修改它才能翻转垂直......

$size_x = imagesx($img);
$size_y = imagesy($img);

$temp = imagecreatetruecolor($size_x, $size_y);

imagecolortransparent($temp, imagecolorallocate($temp, 0, 0, 0));
imagealphablending($temp, false);
imagesavealpha($temp, true);
$x = imagecopyresampled($temp, $img, 0, 0, ($size_x-1), 0, $size_x, $size_y, 0-$size_x, $size_y);
if ($x) {
    $img = $temp;
}
else {
    die("Unable to flip image");
}

header("Content-type: image/gif");
imagegif($img);
imagedestroy($img);

归功于MarkusHere is the link