我一直在尝试让透明度与我的应用程序一起工作(在存储图像之前动态调整图像大小),我认为在对imagealphablending
and进行了很多误导之后,我终于缩小了问题的范围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
?