Je veux une image pendant que je frappe une API comme localhost:8080:/getImage/app/path={imagePath}
Pendant que je frappe cette API, il me retournera une image.
Est-ce possible?
En fait, j'ai essayé cela, mais cela me donne une erreur. Voici mon code,
@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;
}
Mon erreur,
Java.io.IOException: The image-based media type image/webp is not supported for writing
Existe-t-il un moyen de renvoyer une image en cliquant sur une URL en Java?
Vous pouvez utiliser IOUtils . Voici un exemple de code.
@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();
}
}
je ne l'ai pas testé car je n'ai pas l'environnement dans cette machine, mais logiquement cela devrait fonctionner comme suit, lisez-le en tant que flux d'entrée et laissez votre méthode renvoyer @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 En fonction de la suggestion de @Habooltak Ana, il n'est pas nécessaire de créer un flux d'entrée, le code doit ressembler à ce qui suit.
@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();
}
Il suffit de renvoyer un objet de fichier avec les en-têtes HTTP appropriés ( Content-Type et Content-Disposition ) fonctionnera dans la plupart des cas/environnements.
Pseudocode
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);
Voir également:
voici une solution simple:
@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();
}