web-dev-qa-db-ja.com

JAVAのRESTAPIで画像をブラウザに返す方法は?

localhost:8080:/getImage/app/path={imagePath}のようなAPIを押している間に画像が欲しい

このAPIを押すと、画像が返されます。

これは可能ですか?

実際、これを試しましたが、エラーが発生します。これが私のコードです、

@GET
@Path("/app")
public BufferedImage getFullImage(@Context UriInfo info) throws MalformedURLException, IOException {
    String objectKey = info.getQueryParameters().getFirst("path");

    return resizeImage(300, 300, objectKey);
}


public static BufferedImage resizeImage(int width, int height, String imagePath)
        throws MalformedURLException, IOException {
    BufferedImage bufferedImage = ImageIO.read(new URL(imagePath));
    final Graphics2D graphics2D = bufferedImage.createGraphics();
    graphics2D.setComposite(AlphaComposite.Src);
    // below three lines are for RenderingHints for better image quality at cost of
    // higher processing time
    graphics2D.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR);
    graphics2D.setRenderingHint(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_QUALITY);
    graphics2D.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
    graphics2D.drawImage(bufferedImage, 0, 0, width, height, null);
    graphics2D.dispose();
    System.out.println(bufferedImage.getWidth());
    return bufferedImage;
}

私のエラー、

Java.io.IOException: The image-based media type image/webp is not supported for writing

JavaでURLをヒットしているときに画像を返す方法はありますか?

6
Sharvil

IOUtils を使用できます。これがコードサンプルです。

@RequestMapping(path = "/getImage/app/path/{filePath}", method = RequestMethod.GET)
public void getImage(HttpServletResponse response, @PathVariable String filePath) throws IOException {
    File file = new File(filePath);
    if(file.exists()) {
        String contentType = "application/octet-stream";
        response.setContentType(contentType);
        OutputStream out = response.getOutputStream();
        FileInputStream in = new FileInputStream(file);
        // copy from in to out
        IOUtils.copy(in, out);
        out.close();
        in.close();
    }else {
        throw new FileNotFoundException();
    }
}
2
Nitin Vavdiya

このマシンに環境がないため、テストしませんでしたが、論理的には次のように動作し、入力ストリームとして読み取り、メソッドが@ResponseBody byte []を返すようにします。

@GET
@Path("/app")
public @ResponseBody byte[] getFullImage(@Context UriInfo info) throws MalformedURLException, IOException {
    String objectKey = info.getQueryParameters().getFirst("path");

    BufferedImage image = resizeImage(300, 300, objectKey);
    ByteArrayOutputStream os = new ByteArrayOutputStream();
    ImageIO.write(image, "jpg", os);
    InputStream is = new ByteArrayInputStream(os.toByteArray());
    return IOUtils.toByteArray(is);
}

[〜#〜] update [〜#〜] @Habooltak Anaの提案に応じて、入力ストリームを作成する必要はありません。コードは次のようになります。

@GET
@Path("/app")
public @ResponseBody byte[] getFullImage(@Context UriInfo info) throws
MalformedURLException, IOException {
    String objectKey = info.getQueryParameters().getFirst("path");

    BufferedImage image = resizeImage(300, 300, objectKey);
    ByteArrayOutputStream os = new ByteArrayOutputStream();
    ImageIO.write(image, "jpg", os);
    return os.toByteArray();
}
2
Basil Battikhi

正しいHTTPヘッダー( Content-Type および Content-Disposition )を含むファイルオブジェクトを返すだけで、ほとんどの場合/環境で機能します。

擬似コード

File result = createSomeJPEG(); 
/*
 e.g.
 RenderedImage rendImage = bufferedImage;
 File file = new File("filename.jpg");
 ImageIO.write(rendImage, "jpg", file);
*/
response().setHeader("Content-Disposition", "attachment;filename=filename.jpg;");
response().setHeader("Content-Type", "image/jpeg");
return ok(result);

参照:

1
jschnasse

ここに簡単な解決策があります:

@GET
@Path("/somePath")
public void getImage(@Context HttpServletResponse res) throws IOException {
    Java.nio.file.Path path = Paths.get("filePath");
    res.getOutputStream().write(Files.readAllBytes(path));
    res.getOutputStream().flush();
}
0
Alireza Dastyar