Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saitoha/libsixel-perl
https://github.com/saitoha/libsixel-perl
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/saitoha/libsixel-perl
- Owner: saitoha
- Created: 2015-06-25T15:53:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-21T16:55:23.000Z (over 9 years ago)
- Last Synced: 2023-03-23T00:40:32.619Z (almost 2 years ago)
- Language: C++
- Size: 328 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
Awesome Lists containing this project
README
# NAME
Image::LibSIXEL - The Perl interface for libsixel (A lightweight, fast implementation of DEC SIXEL graphics codec)
# SYNOPSIS
use Image::LibSIXEL;
$encoder = Image::LibSIXEL::Encoder->new();
$encoder->setopt("w", 400);
$encoder->setopt("p", 16);
$encoder->encode("images/egret.jpg");
$decoder = Image::LibSIXEL::Decoder->new();
$decoder->setopt("i", "images/egret.six");
$decoder->setopt("o", "egret.png");
$decoder->decode();# DESCRIPTION
This perl module provides wrapper objects for part of libsixel interface.
http://saitoha.github.io/libsixel/## Class Methods
=Image::LibSIXEL::Encoder->new
Create Encoder object
=Image::LibSIXEL::Decoder->new
Create Decoder object
## Object Methods
=Image::LibSIXEL::Encoder->setopt
=Image::LibSIXEL::Encoder->encode
=Image::LibSIXEL::Decoder->setopt
=Image::LibSIXEL::Decoder->decode
# AUTHOR
Hayaki Saito
# SEE ALSO