3

我正在尝试使用 Play 输出生成的图像。我不确定我的问题是否与 Play 相关。我正在尝试做与此 PHP 代码相同的事情:

header("Content-type: Image/png");
$map = imagecreatefrompng("$_SESSION[ROOT]/it/cabling/maps/${building}_$floor.png");
... // add annotations
imagepng($map);

看起来我需要使用renderBinary,但我不确定如何从 aBufferedImageInputStreamthat renderBinarywant 作为它的论点。

Application.map行动:

public static void map(String building_code, String ts_code) throws IOException {
    BufferedImage image = ImageIO.read(new File("public/images/maps/" + building_code + "_" + ts_code.charAt(0)));
    ... // Overlay some additional information on the image
    // do some sort of conversion
    renderBinary(inputStream);
}
4

2 回答 2

3

有许多 renderBinary 方法,其中一个只是将 File 作为参数。见http://www.playframework.org/documentation/api/1.1/play/mvc/Controller.html#renderBinary(java.io.File )

所以,你的代码需要像

public static void map(String building_code, String ts_code) throws IOException {
    renderBinary(new File("public/images/maps/" + building_code + "_" + ts_code.charAt(0)));
}
于 2010-11-08T21:38:06.303 回答
3

Images.Captcha我在导致此解决方案的源代码中找到了一个示例:

public static void map(String building_code, String ts_code) throws IOException {
    BufferedImage image = ImageIO.read(new File("public/images/maps/" + building_code + "_" + ts_code.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.code, ts.code)}" width="100%">在视图模板中引用使用。

出于某种原因,即使没有指定内容类型,它也可以工作,但我不确定如何。里面的代码Images.Captcha有它,所以我保留了它,至少在我找出为什么没有它它可以工作之前。

于 2010-11-09T04:20:44.713 回答