我在源代码中找到了
Images.Captcha导致该解决方案的示例:
public static void map(String building_pre, String ts_pre) throws IOException { BufferedImage image = ImageIO.read(new File("public/images/maps/" + building_pre + "_" + ts_pre.charAt(0) + ".png")); ... // add annotations ImageInputStream is = ImageIO.createImageInputStream(image); ByteArrayOutputStream baos = new ByteArrayOutputStream(); ImageIO.write(image, "png", baos); ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray()); Response.current().contentType = "image/png"; renderBinary(bais);}
<img id="map" src="@{Application.map(ts.building.pre, ts.pre)}"width="100%">在视图模板中使用引用。
由于某种原因,即使没有指定内容类型它也可以工作,但是我不确定如何。代码中包含
Images.Captcha了它,所以我保留了它,至少直到找到不使用它的原因为止。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)