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(); }
SOLR: Non English (Latin) Characters in Field Name
-
The SOLR documentation mentions following requirement for defining name of
a field.
*name*
*The name of the field. Field names should consist of alphanumer...
4 years ago
Excellent - thank-you. It was exactly what I was looking for.
ReplyDeleteGreat program with little extra customizations,
ReplyDeleteImages can be created in java without any extra libs,
http://www.javadomain.in/creating-image-using-java-without-extra-libs/