import javax.servlet.http.*;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.*;
import javax.imageio.*;
import java.util.Random;
public class ImageServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
Color getRandColor(int fc, int bc) {
Random random = new Random();
if (fc > 255)
fc = 255;
if (bc > 255)
bc = 255;
int r = fc + random.nextInt(bc - fc);
int g = fc + random.nextInt(bc - fc);
int b = fc + random.nextInt(bc - fc);
return new Color(r, g, b);
}
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws IOException {
response.setContentType("image/jpeg");
response.setHeader("Pragma", "No-cache");
response.setHeader("Cache-Control", "no-cache");
response.setDateHeader("Expires", 0);
int width = 60, height = 20;
BufferedImage Image = new BufferedImage(width, height,
BufferedImage.TYPE_INT_RGB);
Graphics g = Image.getGraphics();
Random random = new Random();
g.setColor(getRandColor(100, 200));
g.fillRect(0, 0, width, height);
g.setColor(getRandColor(160, 200));
for (int i = 0; i < 155; i++) {
int x = random.nextInt(width);
int y = random.nextInt(height);
int x1 = random.nextInt(12);
int y1 = random.nextInt(12);
g.drawLine(x, y, x1, y1);
}
String Srand = "";
for (int i = 0; i < 4; i++) {
String rand = String.valueOf(random.nextInt(10));
Srand += rand;
g.setColor(new Color(20 + random.nextInt(110), 20 + random
.nextInt(110), 20 + random.nextInt(110)));
g.drawString(rand, 13 * i + 6, 16);
HttpSession session = request.getSession();
session.setAttribute("user_msg", Srand.toString());
}
g.dispose();
ImageIO.write(Image, "JPEG", response.getOutputStream());
}
}