io.yawp.commons.http.ImageResponse Maven / Gradle / Ivy
package io.yawp.commons.http;
import java.io.IOException;
import javax.servlet.http.HttpServletResponse;
public class ImageResponse extends HttpResponse {
private byte[] imageBytes;
public ImageResponse(byte[] imageBytes) {
this.imageBytes = imageBytes;
}
@Override
public String getText() {
return null;
}
@Override
public void execute(HttpServletResponse resp) throws IOException {
resp.setContentType("image/png");
resp.getOutputStream().write(imageBytes);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy