In my application when i click print button print will come from the Bluetooth printer, right now i am able to print the data...
But suddenly i recognize that this (Zebra MZ320 printer) doesn't support Hindi language.
i need to print Hindi data also in the printer , so the only option i have is Convert the string(Hindi) data into image and then printing that image.
For that i need to know how to convert an string into image and also i don't want to save that image whenever printing is completes then i want to delete it...
Can any one guide me how to acheive this , i already started with Base64 encoding and decoding but not succeed(means how to do). i am using the below code to convert my string into image but i am getting Skimage Decoder--Factory returned null
String cpclConfigLabel = "Purchy No:";
byte[] configLabel = cpclConfigLabel.getBytes();
Log.e("Befire Bimta",""+configLabel);
Bitmap bitmap = BitmapFactory.decodeByteArray(configLabel , 0, configLabel .length);
for every valuable reply i will give kudos....