12

我一直在尝试让透明度与我的应用程序一起工作(在存储图像之前动态调整图像大小),我认为在对imagealphablendingand进行了很多误导之后,我终于缩小了问题的范围imagesavealpha。源图像永远不会以适当的透明度加载!

// With this line, the output image has no transparency (where it should be
// transparent, colors bleed out randomly or it's completely black, depending
// on the image)
$img = imagecreatefromstring($fileData);
// With this line, it works as expected.
$img = imagecreatefrompng($fileName);

// Blah blah blah, lots of image resize code into $img2 goes here; I finally
// tried just outputting $img instead.

header('Content-Type: image/png');
imagealphablending($img, FALSE);
imagesavealpha($img, TRUE);
imagepng($img);

imagedestroy($img);

从文件加载图像将是一些严重的架构困难;此代码与从 iPhone 应用程序查询的 JSON API 一起使用,在这种情况下更容易(并且更一致)将图像作为 POST 数据中的 base64 编码字符串上传。我是否绝对需要以某种方式将图像存储为文件(以便 PHP 可以再次将其加载到内存中)?有没有办法创建一个$fileData可以传递给Stream 的方法imagecreatefrompng

4

3 回答 3

6

您可以使用此代码:

$new = imagecreatetruecolor($width, $height);

// preserve transparency

imagecolortransparent($new, imagecolorallocatealpha($new, 0, 0, 0, 127));

imagealphablending($new, false);

imagesavealpha($new, true);

imagecopyresampled($new, $img, 0, 0, $x, 0, $width, $height, $w, $h);

imagepng($new);

imagedestroy($new);

它将为您制作透明图像。祝你好运 !

于 2013-12-09T04:05:30.177 回答
6

Blech,这最终证明是由于一个完全独立的 GD 调用正在验证图像上传。我忘了在那个代码中添加imagealphablendingimagesavealpha,它正在创建一个新图像,然后传递给调整大小的代码。无论如何,这可能应该改变。非常感谢 Goldenparrot 将字符串转换为文件名的出色方法。

于 2012-08-29T16:41:01.920 回答
2

我是否绝对需要以某种方式将图像存储为文件(以便 PHP 可以再次将其加载到内存中)?

不。

文档说:

您可以使用data://php v5.2.0 中的协议

例子:

// prints "I love PHP"
echo file_get_contents('data://text/plain;base64,SSBsb3ZlIFBIUAo=');
于 2012-08-29T15:43:00.693 回答