Я пытаюсь распечатать файл html из моего приложения cordova.
Я установил Cordova-плагин-принтер.
В файл app.module.ts импортирован плагин и после этого, когда я пытаюсь использовать this.printer.print ('hello')
Замечание происходит вообще
import {Printer, PrintOptions} из '@ ionic-native / printer / ngx';
личный принтер: принтер
Print(){
console.log("Print Pressed");
var options = {
font: {
size: 22,
italic: true,
align: 'center'
},
header: {
height: '6cm',
label: {
text: "\n\nDie Freuden",
font: {
bold: true,
size: 37,
align: 'center'
}
}
},
footer: {
height: '4cm',
label: {
text: 'Johann Wolfgang von Goethe, 1749-1832, deutscher Dichter, Naturforscher',
font: { align: 'center' }
}
}
};
this.printer.print("hello",options);
console.log("Print Pressed>>>");
}