- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个生成图像然后将图像输出为 png 的 php 脚本。
$img = imagecreatetruecolor($graphWidth,$graphHeight);
...
*drawing routines*
...
header("Content-type: image/png");
imagepng($img);
我现在需要的是让 php 脚本对图像数据进行 base64 编码并输出该字符串(这样我最终可以将该编码数据传递给 java 脚本,该脚本解码并将该图像添加到生成的 pdf 中)。
我已经多次尝试使用其他 stackoverflow 帖子/答案等让它自己工作,但我对这项技术的了解还不够多,无法让它工作。
有人可以帮我解决这个问题吗?
提前致谢
克里斯
最佳答案
这不起作用的原因是 $img
中的图像是资源,而不是实际的 PNG 图像。当您调用 imagepng()
时,它会输出图像。
我要做的是创建一个输出缓冲区,然后对其进行 base-64 编码。
ob_start();
imagepng($img);
$buffer = ob_get_clean();
ob_end_clean();
echo base64_encode($buffer);
不要忘记更改您的 Content-Type
header ,因为这不再是 image/png
。
关于php base64编码imagecreatetruecolor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14587754/
根据 http://php.net/manual/en/function.imagecreatetruecolor.php it creates a new true color image 但再往下
我很确定我需要使用 imagefilledrectangle 以获得白色背景而不是黑色背景...只是不确定如何。我已经尝试了几种方法。 $targetImage = imagecreatetrueco
在我网站的控制面板中显示 Apache version : 2.0.63 PHP version : 5.2.9 MySQL version : 5.0.92-community Operating
使用这个“有点”丑陋的类,我使用 .ttf 字体文件将文本呈现为图像。当使用 ImageFlip() 函数时,我得到一个黑色的全黑图像(尽管大小合适)。当我用 imagecreate() 替换所有出现
我一直在将我的网站更新到 PHP 7.1.7 和 IIS,但遇到了 imagecreatetrucolor 抛出 500 错误的问题。 http://localhost/test.php 500 (I
我正在尝试将“pChart”与我的 PHP 代码集成。当我尝试运行示例时,它给我一个错误,指出 call to undefined function imagecreatetruecolor。建议的解
我是一名优秀的程序员,十分优秀!