go-sixel icon indicating copy to clipboard operation
go-sixel copied to clipboard

DRCS/Sixel Encoder/Decoder

Results 7 go-sixel issues
Sort by recently updated
recently updated
newest added

Hi, I tried to use gosr in Mac Terminal, the image couldn't show, like: ![image](https://user-images.githubusercontent.com/1080370/147387935-a48fc217-1021-441b-bf32-f2736181e1cc.png) But using iTerm worked fine: ![image](https://user-images.githubusercontent.com/1080370/147387942-dae11cc9-954c-4ca0-a941-a8fea7eb2b29.png)

Here you state to reserve color slot 0 for transparent (aka background color): https://github.com/mattn/go-sixel/blob/8aa94a3344af2b2fb49ae02a81ceff5b76d1625a/sixel.go#L38 Following the SIXEL spec in DEC STD 070 this is actually not needed, there is no...

## gosr ![](https://media.discordapp.net/attachments/361910177961738244/569426028485804033/1555832128.png) ## img2sixel ![](https://media.discordapp.net/attachments/361910177961738244/569426154650337280/unknown.png) # Reproducing 1. `git clone https://github.com/vizs/stixel && cd stixel` 2. `git checkout 1d19252` 3. `make` 4. `./st` 5. `gosr astolfo.png` This does not happen...

The command `go get github.com/mattn/go-sixel/cmd/gosr` on my go version 1.19.5 complains that `go get` is no longer supported outside a module. So I try: `go install github.com/mattn/go-sixel/cmd/gosr@latest` but that says:...

when the image size is small, almost the same between gosr and img2sixel, but when the image size is large, ie: 2560x1920, gosr and img2sixel are 4.44s and 04s respectively....

![image](https://github.com/user-attachments/assets/789d3e46-e3cc-41d2-a44d-2cc661fc206d) As shown in the image above using this simple code snippet below quite a bit of extra whitespace is added making it impossible to use inline ```go func SixelEncode(url...

Transparency mode 0 adds an unpleasant black bar to most terminals I've tested with, transparency mode 1 does not have this issue.