代码之家  ›  专栏  ›  技术社区  ›  Feralheart

从表中的数据创建图像(PHP)

  •  0
  • Feralheart  · 技术社区  · 6 年前

    我想从我放在表中的数据创建一个图像。

    $out = "<table><tr><td>There will be data</td></tr></table>";
    header('Content-type: image/png');
    $png_image = imagecreate(50, 500);
    $tcol = imagecolorallocate($png_image, 255, 255, 0);
    imagestring($png_image, 4, 30, 25, $out, $tcol);
    //echo $out;
    imagepng($png_image);
    imagedestroy($png_image);
    

    但我得到的结果是:

    PNG IHDR2E7PLTEE pHYs+IDATH1 Om*IENDB项目`

    我做错了什么?

    1 回复  |  直到 6 年前
        1
  •  0
  •   N3R4ZZuRR0 user12232205    6 年前

    你的代码运行良好。我把这个作为输出:

    OUTPUT