I'm unfamiliar with how passing image data to a JSP file for display works. I'm using Activiti and I want to get a process diagram, and then and display it on my web page. So far I have:
InputStream is = repositoryService.getProcessDiagram(processList.get(0).getId());
But I don't know what you do with this InputStream
.