BufferedImage image = new BufferedImage(100, 100, BufferedImage.TYPE_INT_RGB);
Graphics g = image.getGraphics();
g.drawString("Hello World!!!", 10, 20);
try {
ImageIO.write(image, "jpg", new File("c:/CustomImage.jpg"));
} catch (IOException e) {
e.printStackTrace();
}
Why NoSQL is in fashion?
-
Couple of years back NoSQL was relatively unheard term. It has become a new
buzzword in town, catching people's imagination. Almost all big daddies of
In...
8 months ago
1 comments:
Excellent - thank-you. It was exactly what I was looking for.
Post a Comment