后端生成图片并显示到页面
一、前端部分:
<img style="position: absolute; top: 0px; left: 0px;" src="http://localhost:8000/queryProPlan1?processId=60030">
二、后端参考
InputStream imageStream = diagramGenerator.generatePngDiagram(bpmnModel); // 输出资源内容到相应对象 byte[] b = new byte[1024]; int len; while ((len = imageStream.read(b, 0, 1024)) != -1) { response.getOutputStream().write(b, 0, len); }
上善若水,水利万物而不争。