pchart 笔划函数

发布于 2024-08-20 07:20:05 字数 564 浏览 4 评论 0原文

对 pChart 中 Stroke() 函数的调用会呈现图像。当我尝试在浏览器上显示此图像时,它显示如下所示的内容,而不是显示图像。如何显示图像而不是这些奇怪的字符?

�PNG  ��� IHDR����������h����tRNS������7X}�� �IDATx���wt[Y~'���C

H�Q�(�RV)TUW��v�}��cό�9�;g�xvv�;s��z���a�㝙�v�cUu�� ���L�,Q)f��/��@E�� ���� ����.����{��W?"������P}��rW�������� !�����@�BB������P��� ����T)$������U !�����@�BB �����P�X˲�]������(!������RH������B�������������� J!!������RH������ B��������������贾兹������*�+������U !������@�BB���� �P������T)$�����U !�����@�BB �����P��!�����@�b˸������m����s��EA��0LE��^늧�2�

The call to Stroke() function in pChart renders an Image. When I try to display this image on the browser, it shows something like the following instead of showing an image. How can I display the image instead of these wierd characters?

�PNG  ��� IHDR����������h����tRNS������7X}�� �IDATx���wt[Y~'���C

H�Q�(�RV)TUW��v�}��cό�9�;g�xvv�;s��z����a�㝙 �v�cUu�����L�,Q)f��/��@E�� ����
����.���{��W?"������P}�rW�������� !�����@�BB�����P�������T)$�������U !�����@�BB
�����P�X˲�]������(!������RH������B��������������J!!������RH������
B������
��������Jaaz������*�+�������U !�����@�BB�����P�������T)$�������U !�����@�BB
�����P��!�����@�b˸������m����s��EA��0LE��^늧�2�

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

〆凄凉。 2024-08-27 07:20:05

如果您直接通过调用 PHP 脚本输出图像,例如 那么您将需要发送正确的 Content-Type 标头:

header('Content-Length: '.filesize($yourimage));
header('Content-Type: image/png');

请注意,任何对 header() 的调用> 必须在输出开始之前发生。

If you are outputting the image directly from a call to a PHP script, such as <img src="yourscript.php" /> then you're going to need to send the correct Content-Type header:

header('Content-Length: '.filesize($yourimage));
header('Content-Type: image/png');

Note that any calls to header() must occur before output is started.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文