sixel: Sixel library to show images in a terminal emulator

[ bsd3, graphics, library, program ] [ Propose Tags ]

Sixel can show graphics on a terminal emulator. This library is developed to showing images on ghci.


[Skip to Readme]

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.1.1.0, 0.1.1.1, 0.1.2.0, 0.1.2.1, 0.1.2.2, 0.1.2.3
Change log CHANGELOG.md
Dependencies base (>=4.7 && <5), bytestring, JuicyPixels, process, sixel, temporary, vector [details]
License BSD-3-Clause
Copyright 2020 Junji hashimoto
Author Junji Hashimoto
Maintainer junji.hashimoto@gmail.com
Category graphics
Home page https://github.com/junjihashimoto/sixel#readme
Uploaded by junjihashimoto at 2020-05-20T15:06:04Z
Distributions NixOS:0.1.2.3
Reverse Dependencies 2 direct, 0 indirect [details]
Executables sixel-exe
Downloads 1136 total (23 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2020-05-20 [all 1 reports]

Readme for sixel-0.1.2.0

[back to package description]

SIXEL Library for Haskell

SIXEL, short for "six pixels", is a bitmap graphics format supported by terminals and printers from DEC. It can show graphics in a terminal emulator.

libsixel provides various demos using SIXEL.

This library is developed for displaying images on ghci.

Usage

This library provides "Show-intances of Sixel-Commands" and "ToSixel type class to change image data into Sixel-Cmmands". To render image data on ghci, just run 'toSixel image-data'. 'putImage' is a wrapper of "readImage 'image-file' >>= putStr.show.toSixel".

See following demo.

demo

References