All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.yawp.commons.http.ImageResponse Maven / Gradle / Ivy

There is a newer version: 2.08alpha
Show newest version
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