承接 reginaldoazevedojr/zebra 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

reginaldoazevedojr/zebra

Composer 安装命令:

composer require reginaldoazevedojr/zebra

包简介

PHP ZPL builder and a basic client for network-connected Zebra label printers.

README 文档

README

PHP ZPL builder and a basic client for network-connected Zebra label printers.

Requires: PHP 5.6 with the GD module.

  • Create ZPL code in PHP that is clean and easy to read.
  • Convert images to ASCII hex bitmaps (JPEG, PNG, GIF, WBMP, and GD2 supported).
  • Simple wrapper for PHP sockets to send ZPL to the printer via raw TCP/IP (port 9100).

Example

The following example will print a label with an image positioned 50 dots from the top left.

use Zebra\Client;
use Zebra\Zpl\Image;
use Zebra\Zpl\Builder;

$zpl = new Builder();
$zpl->fo(50, 50);

$image = new Image(file_get_contents('example.png'));
$zpl->gf($image);

$client = new Client('10.0.0.50');
$client->send($zpl);

The same example using static constructors and method chaining:

$image = new Image(file_get_contents('example.png'));
$zpl = Zpl::start()->fo(50, 50)->gf($image);
Client::printer('10.0.0.50')->send($zpl);

Installation with Composer

$ composer require 'reginaldoazevedojr/zebra:dev-master'
$ composer update

统计信息

  • 总下载量: 4.75k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 4
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 4
  • Watchers: 1
  • Forks: 55
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2015-12-03

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固