homelan/dec-sixel
最新稳定版本:1.1.0
Composer 安装命令:
composer create-project homelan/dec-sixel
包简介
Provides a class that produces the sixel terminal ouput needed to display a png|jepg|gif image
README 文档
README
PHP Class for reading in image files, and producing the output for a terminal that supports sixel, to display that image.
Install
composer require homelan/dec-sixel
Usage
There is one class prodvided by the package, which reads in an image file, and produces the sixel escape sequence.
require_once 'vendor/autoload.php';
use HomeLan\Retro\DEC\Terminal\Gfx\SixelConverter;
// Create converter instance
$oConverter = new SixelConverter();
// Configure converter
$oConverter->setMaxDimensions(200, 300) // Set reasonable terminal size
->setColorCount(32) // Use 64 colors for better terminal compatibility
->loadImage('some-image.png');
// Convert and output
echo "Displaying image in Sixel format:\n";
echo $oConverter->convertToSixel();
Run length encoding is not supported, however it is disabled by default. As it consumes more CPU time, however it saves bendwidth.
require_once 'vendor/autoload.php';
use HomeLan\Retro\DEC\Terminal\Gfx\SixelConverter;
// Create converter instance
$oConverter = new SixelConverter();
$sImage = file_get_contents(''some-image.png');
// Configure converter
$oConverter->setMaxDimensions(200, 300) // Set reasonable terminal size
->setColorCount(32) // Use 64 colors for better terminal compatibility
->enableRunlengthEncoding() // Enables run length encoding
->setImage($sImage);
// Convert and output
echo "Displaying image in Sixel format:\n";
echo $oConverter->convertToSixel();
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-05-19