susros/colorbarcoder 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

susros/colorbarcoder

Composer 安装命令:

composer require susros/colorbarcoder

包简介

ColorbarCoder is PHP class for encoding and decoding color barcode image.

README 文档

README

ColorbarCoder

ColorbarCoder

ColorbarCoder encodes the original text string to color codes and decode color codes from color bar image into its original text.

Documentation

Full documentation: Here

Installation

ColorbarCoder can be downloaded manually or cloneed by using:

git clone git@github.com:Susros/ColorbarCoder.git

ColorbarCoder is also availabe on Packagist. To install it with Composer, add this line to your composer.json file:

"susros/colorbarcoder" : "~1.0.2"

or run

composer require susros/colorbarcoder

Basic Usage

Include ColorbarCoder if you are not using autoload.

include_once "path/to/ColorbarCoder.php";
use ColorbarCoder\ColorbarCoder;

Instantiate ColorbarCoder

$colorbarCoder = new ColorbarCoder();

Encode the text,

// Original text 
$text = "This is awesome!"; 

// Encode the text
$colorbarCoder->encode($text);

Print the colorbar image,

$colorbarCoder->printColorbarImage(500, 500);

This will print out image with 500 x 500 dimention. The default image extension is PNG. JPG format can be created by declaring JPG in the parameter. However, only PNG works for decoding the color bar as JPG will reduce the quality and result in different color code. Therefore, the original text will not be accurate. It is recommended to use PNG instead.

alt text

Decode the color bar image,

// Image file
$image = "./img/colorbar.png";

// Decode the image
$colorbarCoder->decode($image);

Print the decoded text,

echo $colorbarCoder->getText();

Output

This is awesome!

For more usages: See here

统计信息

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

GitHub 信息

  • Stars: 5
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-11-20

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固