Как изменить размер шрифта при печати в Android?
Я отправляю текст на принтер bluetooth через мою ячейку Android. Обаprinter and my device are connected via the bluetooth. Он работает нормально, и я получаю нужный текст на бумаге.
My question is:
Принтер по умолчаниюfont size
текста. Я хочу изменить размер шрифта текста, который должен быть напечатан.
Как я могу достичь этого ??
Вот мой код печати текста после подключения к Bluetooth:
private void connect_print(BluetoothDevice bluetoothDevicess) {
// some code
printData();
// some code
}
The printData() method
private void printData() {
// TODO Auto-generated method stub
String str = new String("This is the text sending to the printer");
String newline = "\n";
try {
out.write(str.getBytes(),0,str.getBytes().length);
Log.i("Log", "One line printed");
} catch (IOException e) {
Toast.makeText(BluetoothDemo.this, "catch 1", Toast.LENGTH_LONG).show();
e.printStackTrace();
Log.i("Log", "unable to write ");
flagCheck = false;
}
try {
out.write(newline.getBytes(),0,newline.getBytes().length);
} catch (IOException e) {
Log.i("Log", "Unable to write the new line::");
e.printStackTrace();
flagCheck = false;
}
flagCheck = true;
}
Я хочу изменитьfont size
иfont style
текста, который отправляется на принтер для печати.
Пожалуйста, помогите мне достичь этого.
Если кто-то может предложить какую-либо ссылку, я тоже буду признателен ему / ей.
Help me to find the solution to this problem