PHP 将 png 文件作为 0 字节保存到磁盘

PHP saves the png file as a 0 byte to disk

我的目的是将生成的二维码图片保存在我的本地。

我已经检查了关于它的整个 Whosebug 问题。但是他们没有帮助我解决这个错误。

<?php 
    header('Content-type: image/png');

    $filename = "./qrs/qr-6234/qr.png";
    $link = "https://whosebug.com";
    $size = 250;
    $url = urlencode ( $link );
    $qr_url = "http://chart.googleapis.com/chart?chs=$sizex$size&cht=qr&chld=L|0&chl=$url&choe=UTF-8";  
    $qr = file_get_contents($qr_url);
    $imgIn = imagecreatefrompng ($qr);
    $imgOut = imagecreate ( $size, $size );
    imagecopy ( $imgOut, $imgIn, 0, 0, 0, 0, $size, $size );
    imagepng ( $imgOut, $filename, 9);
    imagedestroy ( $imgIn );
    imagedestroy ( $imgOut );
?>

我不知道为什么,但它给了我零字节的 png 文件。

编辑: 感谢 ishagg,我得到了错误日志。这些是;

Warning: file_get_contents(): http:// wrapper is disabled in the server configuration by allow_url_fopen=0 in ./qr/qr_txt_test.php on line 10

Warning: file_get_contents(http://chart.googleapis.com/chart?chs=250&cht=qr&chld=L|0&chl=https%3A%2F%2Fwhosebug.com&choe=UTF-8): failed to open stream: no suitable wrapper could be found in ./qr/qr_txt_test.php on line 10

Warning: imagecreatefromstring(): Empty string or invalid image in ./qr/qr_txt_test.php on line 11

Warning: imagecopy() expects parameter 2 to be resource, boolean given in ./qr/qr_txt_test.php on line 13

Warning: imagepng(): gd-png error: no colors in palette in ./qr/qr_txt_test.php on line 14

Warning: imagedestroy() expects parameter 1 to be resource, boolean given in ./qr/qr_txt_test.php on line 15

如果删除 header() 调用,您将能够在脚本中看到错误。

你的有两个:

  • $qr_url 中使用的变量 $sizex 未定义。
  • 要从外部资源创建新图像,您需要使用 imagecreatefromstring()

修复了这两个错误后,代码可以正常工作:

<?php
header('Content-type: image/png');
$filename = "qr.png";
$link = "https://whosebug.com";
$size = 250;
$url = urlencode ( $link );
$qr_url = "http://chart.googleapis.com/chart?chs=$size&cht=qr&chld=L|0&chl=$url&choe=UTF-8";  
$qr = file_get_contents($qr_url);
$imgIn = imagecreatefromstring($qr);
$imgOut = imagecreate ( $size, $size );
imagecopy ( $imgOut, $imgIn, 0, 0, 0, 0, $size, $size );
imagepng ( $imgOut, $filename, 9);
imagedestroy ( $imgIn );
imagedestroy ( $imgOut );

结果: