String to bitmap generation
807580Jun 26 2010 — edited Jun 26 2010Hi
I try to generate a bmp file. The input data will be a String in Unicode like String s = "Hello world"; The output will be a bmp file of hight and width which will have this text on it. The font used to generate bmp should be also a parameter.
Now my quastion: is it possible to generate this in Java without any additional libraries? WHat kind of package (classes and methods) should I use?
PS: I do not want to convert image to base64 and then send it via net and then this string base64 convert to image.
I just want to have bmp file with black letter "Hello World" and white background.
THX