duanquanhan2333 2012-08-05 09:30
浏览 48

如何在网页上显示由PHP调用的java代码生成的图像?

I have a java jar file that generates an image upon completion. I need to call this from a PHP server. How do I display the image on the web page? exec() or passthru() do not offer features to return images.

  • 写回答

2条回答

  • dongwei2882 2012-08-05 09:49
    关注

    If the image returned by Java is a valid image, in PHP you just need to send an additional header using the header() function, so the browser knows it's an image and not regular HTML.

    E.g. (presuming the returned image is in JPEG format):

    header('Content-Type: image/jpeg');
    readfile('path/to/yourimage.jpg');
    

    http://php.net/manual/en/function.header.php

    http://php.net/manual/en/function.readfile.php


    Another way could be executing the JAR file with the exec() function. Should be something like this:

    header('Content-Type: image/jpeg');
    exec('java -jar /path/to/file.jar', $output);
    

    http://php.net/manual/en/function.exec.php

    评论

报告相同问题?

悬赏问题

  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制