hahadu/image-to-text

图像转像素代码

Installs: 8

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/hahadu/image-to-text

v1.0.1 2020-10-09 07:14 UTC

This package is auto-updated.

Last update: 2025-10-10 02:59:57 UTC


README

图像转像素代码类

安装:

composer require hahadu/image-to-text

使用:

use Hahadu\ImageToText\ImageToText;

$file_name = "test.jpg"; //图像路径
$chars = "01"; //设置转换字符
$toText = new ImageToText($chars);
$result = $toText->to_text($file_name);
var_dump($result);
  • 2020.10.09:简化类库使用流程