Skip to content

alonsohector/MyZPL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

MyZPL

Send ZPL code to Zebra printers using sockets

Zebra printers allows printing labels from web interface, simply connects to the Zebra Printer using sockets.

IP ADDRESS:

Set and Validate the Zebra IP Address with set_and_validate_IP($IP_Address) before to send information.

PORT NUMBER:

Zebra printers by default use 9100 port and you can change it by using set_Port($port)

ZPL CODE:

Test ZPL representation for Zebra is added in function test_ZPL().

It is better Zebra tools to create ZPL templates and labels

but we can use ZPL online viewer LABELARY for a visual representation.

How to use MyZPL

Start with using IP Address and change the Port number if you need it, set the ZPL code and send it to Zebra printer.

Easy !!!

/*
*	Test MyZPL class
*/

$IP_Address = "192.168.1.10";

//Start class using Zebra IP Address 
$zpl = new MyZPL($IP_Address);

//Change port if it is needed 
//$port = "9100";
//$zpl->set_Port($port)

//create a ZPL Test code
$zpl->test_ZPL();

//or you can set zpl code 
//$zpl_code = "zpl code template";
//$zpl->set_ZPL($zpl_code);

//send information to Zebra Printer
$zpl->send_ZPL();

GNU GENERAL PUBLIC LICENSE

The GNU General Public License is a free, copyleft license for software and other kinds of works.

Created by: Hector Manuel Alonso Ortiz

eMail: [email protected]

About

Send ZPL code to Zebra printers using sockets

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages