Results 103 comments of Hayaki Saito

@HalosGhost SIXEL format supports RGB or HLS color format. but these resolution are less than 24bit. RGB: 100 \* 100 \* 100 = 1,000,000 colors HLS: 100 \* 100 \*...

SIXEL is a palette-based imaging format. So Its colors should be up to about 256 colors from the viewpoint of efficiency. I also know 24-bit true color SGR feature (Konsole's...

@olaf-rogalsky It's my API-design failure... Content of pixel buffer(data) is not immutable. it can be changed by sixel_encode(). I should rename this function to `sixel_encode_from_mutable_buffer()`. Furthermore I think new API...

> The gnuplot command shown in the screenshot produces a different image on another machine; weird. I can't reproduce that on my environment. Could you show a screenshot on another...

I found a tweet that says doom works on mintty. https://twitter.com/rattcv/status/775213402130046977

@therealkenc Unfortunately, SIXEL is palette-based format, which is not suitable to represent true color... (https://github.com/saitoha/libsixel/issues/44) The patch at https://github.com/mintty/mintty/issues/593#issuecomment-249219687 makes mintty enable to display up to 1023 color paletted image....

> w3m: works, but limited user experience; image display is delayed until all images are loaded which is slow. This problem may be caused by cygwin's expensive fork() implementation. Does...

I've merged above patch into `dec-locator` branch. ![drawing](https://cloud.githubusercontent.com/assets/1162739/18817512/35cef0de-839d-11e6-91ca-9d3225880c9f.gif) > opengl example: works, but it's not too impressive due to its coarse image quality. This example might be better: https://github.com/saitoha/NeHe-SIXEL

Sorry there is a leak problem in my recent patch(https://github.com/saitoha/mintty-sixel/commit/7b6bf811ba617e68a6717cbb5e06cb21470207c6). I confirmed current mintty `master` does not have this problem.

Leak problems in `master` are fixed by https://github.com/mintty/mintty/issues/595 Another leak problem in `dec-locator` branch is fixed by saitoha/mintty-sixel@e92d9a5