pchart 笔划函数
对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您直接通过调用 PHP 脚本输出图像,例如
那么您将需要发送正确的
Content-Type
标头:请注意,任何对 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 correctContent-Type
header:Note that any calls to header() must occur before output is started.