php imagepng()仅在服务器上生成黑色图像

时间:2012-09-20 21:23:22

标签: php javascript apache

我使用我基于以下内容的脚本从用户上传的声音文件中动态生成波形图像:http://andrewfreiday.com/2010/04/29/generating-mp3-waveforms-with-php/

该脚本在我的开发环境Windows 7,Apache2,PHP 5上运行正常。但是当我把它放在我的服务器Ubuntu Linux上时,Apache2 PHP 5,imagepng()输出一个黑盒子。

我研究了类似的问题,比如Why is this creating a black image?,并确保我的imagealphablending()和imagesavealpha()按照描述的方式使用。但仍然没有运气。我已经检查了文件夹权限并确认LAME可以写入正确的文件夹而不会抛出错误。

我还试图将背景颜色设置为与我的页面背景颜色相同的颜色,因为透明度是“很好的”,而不是必需品。

无论如何,这是输出我的图像的PHP:

// want it resized?
if ($width) {
  // resample the image to the proportions defined in the form
  $rimg = imagecreatetruecolor($width, $height);
  // save alpha from original image
  imagealphablending($rimg, false);
  imagesavealpha($rimg, true);
  // copy to resized
  imagecopyresampled($rimg, $img, 0, 0, 0, 0, $width, $height, imagesx($img), imagesy($img));
  imagepng($rimg, "../img/" . $genFileName .".png");
  imagedestroy($rimg);
} else {
  imagealphablending($img, false);
  imagesavealpha($img, true);
  imagepng($img, "../img/" . $genFileName .".png");
}

imagedestroy($img);

echo "img/" . $genFileName . ".png";


} else {

echo "An error.";


}

这就是调用它的Javascript:

//pass the audio data to the server to have the wave drawn
_generateWaveForm = function(_file){

//create the form data
_form.append('file',_file);                      //mp3 to be sent to the server
_form.append('height',300);                      //height of image to be returned
_form.append('width',window.innerWidth - 20);    //width of image to be returned
_form.append('foreground','#FFFF51');            //color of image to be returned
_form.append('background','');                   //background (left empty for transparent BG)
_form.append('flat',true);                       //setting flat to true

    //pass it on
    $.ajax({
        url: "php/php-waveform-png_3.php",
    type: "POST",
    data: _form,
    processData: false,
    contentType: false,
    success: function(_result){_gotTheWaveForm(_result)}
    });
},

我已经对这个问题持续了两天了,任何帮助都会受到赞赏。

1 个答案:

答案 0 :(得分:3)

尝试添加

$transparentColor = imagecolorallocatealpha($rimg, 0, 0, 0, 127);
imagefill($rimg, 0, 0, $transparentColor);

$rimg = imagecreatetruecolor($width, $height);
imagealphablending($rimg, false);
imagesavealpha($rimg, true);

整个部分:

$rimg = imagecreatetruecolor($width, $height);
imagealphablending($rimg, false);
imagesavealpha($rimg, true);
$transparentColor = imagecolorallocatealpha($rimg, 0, 0, 0, 127);
imagefill($rimg, 0, 0, $transparentColor);