Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@sake12/cordova-plugin-ble-zbtprinter
Advanced tools
A Cordova plugin for Zebra bluetooth printers
This plugin defines a global 'cordova.plugins.zbtprinter' object, which provides an API for printing base64 images and labels on a Zebra printer, converting base64 string to equivalent ZPL code, getting printer status and discovering Zebra printers with Bluetooth.
Forked from prakashsatyani
Images can be printed on a Zebra printer in base64 format:
var base64StringArray = [base64String1, base64String2];
cordova.plugins.zbtprinter.printImage(base64StringArray, MACAddress,
function(success) {
alert("Print ok");
}, function(fail) {
alert(fail);
}
);
You can send data in ZPL Zebra Programing Language:
var printText = "^XA"
+ "^FO20,20^A0N,25,25^FDThis is a ZPL test.^FS"
+ "^XZ";
cordova.plugins.zbtprinter.print(MACAddress, printText,
function(success) {
alert("Print ok");
}, function(fail) {
alert(fail);
}
);
Discover nearby bluetooth Zebra printers:
cordova.plugins.zbtprinter.discoverPrinters(
function(MACAddress) {
alert("discovered a new printer: " + MACAddress);
}, function(fail) {
alert(fail);
}
);
You can get a status response from a connected Zebra printer using:
cordova.plugins.zbtprinter.getStatus(address,
function(success){
alert("Zbtprinter status: " + success);
}, function(fail) {
alert("Zbtprinter error: " + fail);
}
);
Retrieve the currently connected printer name:
cordova.plugins.zbtprinter.getPrinterName(MACAddress,
function(printerName) {
alert("Printer name: " + printerName);
}, function(fail) {
alert(fail);
}
);
Get ZPL equivalent code from the base64 Image string :
var base64Image = base64String;
var addHeaderFooter = false; //Want to add header/footer ZPL code or not
var blacknessPercentage = 50; //Blackness Percentage
cordova.plugins.zbtprinter.getZPLfromImage(base64Image, addHeaderFooter, blacknessPercentage,
function(zplCode) {
alert("ZPL Code : " + zplCode);
}, function(error) {
alert(error);
}
);
cordova plugin add https://github.com/prakashsatyani/cordova-plugin-ble-zbtprinter
For more information about ZPL please see the PDF Official Manual
FAQs
A Cordova plugin for Zebra bluetooth printers
We found that @sake12/cordova-plugin-ble-zbtprinter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.