Home > Backend Development > PHP Tutorial > 图像如何以数据流的方式传输到客户端

图像如何以数据流的方式传输到客户端

WBOY
Release: 2016-06-23 13:41:24
Original
934 people have browsed it

安卓客户端请求服务端生成一个图片的验证码传输过去  如果是生成图片以文件的方式保存 那就会生成很多的验证码图片,请教一下大家  如果在不占用存储空间的情况下 把验证码以图片的形式  传输到安卓客户端  


回复讨论(解决方案)

图像如何以数据流的方式传输到客户端

图片生成程序中
imagepng($im);
而不是
imagepng($im, '图片文件名');

图像如何以数据流的方式传输到客户端

图片生成程序中
imagepng($im);
而不是
imagepng($im, '图片文件名');


谢谢版主的热心回答     但是我想着把这个imagepng 生成的图片存储到变量里  然后安卓客户端那边调用 经过转换展示到APP上  用img的话 客户端那边应该没法调用吧

ob_start();imagepng($im);$s = ob_get_clean();
Copy after login
就存到变量里了

  谢谢版主大大 热心回答 结贴

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template