使用gd + php旋转图像时出现边框,我不知道我做错了什么。
<?php
$size = 900;
$img = imagecreate($size, $size);
imagesavealpha($img, true);
$color = imagecolorallocatealpha($img, 0, 0, 0, 127);
imagefill($img, 0, 0, $color);
$lines_color = imagecolorallocate($img, 0, 0, 0);
imageline($img, ($size * 0.50), ($size * 0.00), ($size * 0.50), ($size * 1.00), $lines_color);
imageline($img, ($size * 0.20), ($size * 0.00), ($size * 0.80), ($size * 1.00), $lines_color);
imageline($img, ($size * 0.00), ($size * 0.20), ($size * 1.00), ($size * 0.80), $lines_color);
imageline($img, ($size * 0.00), ($size * 0.50), ($size * 1.00), ($size * 0.50), $lines_color);
imageline($img, ($size * 0.00), ($size * 0.80), ($size * 1.00), ($size * 0.20), $lines_color);
imageline($img, ($size * 0.20), ($size * 1.00), ($size * 0.80), ($size * 0.00), $lines_color);
$img = imagerotate($img, 45, 1);
imagesavealpha($img, true);
$color = imagecolorallocatealpha($img, 0, 0, 0, 127);
imagefill($img, 0, 0, $color);
header("Content-Type: image/png");
imagepng($img, 'demo.png');
结果:添加了魔法边框: - /
答案 0 :(得分:0)
为imagerotate
传递透明背景颜色:
$transparent = imagecolortransparent($img, $color);
$img = imagerotate($img, 45, $transparent);