In my Java servlet that uses Processing, I want it to render the contents of the PApplet to a BufferedImage and produce from it a PNG image. What's the way to create a BufferedImage from the contents of a PApplet? The code I have to create the BufferedImage and renders it to browser should work from examples I've seen, but the final image it produces is black/empty.
First I have:
private PApplet createPApplet() {
PApplet p = new PApplet();
p.init();
p.noLoop();
p.size(486, 243);
p.background(255);
p.stroke(255, 255, 255);
p.colorMode(PApplet.RGB, 256, 1, 1);
p.translate(p.width/2, p.height/2);
return p;
}
Then in the doGet I have
PApplet p = createPApplet();
p.loadPixels();
// here I do some drawing with p.point()
p.loadPixels();
BufferedImage img = new BufferedImage(486, 243, BufferedImage.TYPE_INT_ARGB);
img.setRGB(0, 0, 486, 243, p.pixels, 0, 256);
p.draw();
response.setHeader("Content-Type", "image/png");
ImageIO.write(img, "PNG", response.getOutputStream());
Thanks everyone for your input!!