0

我正在使用代码使用 PHP GD 创建需要完全透明背景的图像。当我创建它时,它在浏览器中显示正常,但在我的 iPhone 应用程序中显示不好。我不知道为什么,但在我的 iPhone 中,它以黑色显示所有透明度。这似乎是一个 GD 问题,因为当我将 GD 图像加载到 Web 编辑器并重新导出时,它在我的 iPhone 应用程序中显示良好。有没有一种特殊的方法我应该从 GD 或其他东西导出 png 图像,或者这是某种错误?这是代码:

$filename = "./me.jpg";

$image_s = imagecreatefromjpeg($filename);

list($current_width, $current_height) = getimagesize($filename);

$left = isset($_GET['pl']) ? abs($_GET['pl']) : 0;
$top = isset($_GET['pt']) ? abs($_GET['pt']) : 0;

$width = isset($_GET['cs']) ? abs($_GET['cs']) : 65;
$height = isset($_GET['cs']) ? abs($_GET['cs']) : 65;

$canvas = imagecreatetruecolor($width, $height);
$current_image = imagecreatefromjpeg($filename);
imagecopy($canvas, $current_image, 0, 0, $left, $top, $current_width, $current_height);

$newwidth = 65;
$newheight = 65;

$image = imagecreatetruecolor($newwidth, $newheight);
imagealphablending($image, true);
imagecopyresampled($image, $canvas, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);

$mask = imagecreatetruecolor($newwidth, $newheight);

$transparent = imagecolorallocate($mask, 255, 255, 255);
imagecolortransparent($mask, $transparent);

imagefilledellipse($mask, $newwidth / 2, $newheight / 2, $newwidth, $newheight, $transparent);

$red = imagecolorallocate($mask, 0, 0, 0);
imagecopymerge($image, $mask, 0, 0, 0, 0, $newwidth + 10, $newheight + 10, 100);
imagecolortransparent($image, $red);
imagefill($image,0,0, $red);

header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
imagedestroy($mask);
4

1 回答 1

0

您是否尝试过使用 imagesavealpha 而不是 imagesettransparency?将 alpha blending 设置为 false,然后将 imagesavealpha 设置为 true。最后,您将调用 imagecolorallocatealpha 函数来获取您的透明/alpha 颜色,而不是 imagesettransparency:

imagealphablending($image, false);
imagesavealpha($image, true);

$transparent = imagecolorallocatealpha($image, 255, 255, 255, 127);

imagefilledellipse($mask, $newwidth / 2, $newheight / 2, $newwidth, $newheight, $transparent);
etc...
于 2012-04-20T09:54:35.667 回答