mattn / longcat

Looooooooooooooooooooooooooooooooooooooooooooooong cat
MIT License
664 stars 26 forks source link

Resize images larger than the maximum size that kitty can handle #38

Closed yoichi closed 3 years ago

yoichi commented 3 years ago

There is a limit to the image size that kitty can handle. The maximum size is 10000: https://github.com/kovidgoyal/kitty/blob/c7eb63d4ff9fda4e294eea3933bd7a424c70f723/kitty/graphics.c#L327

So, longcat -n N with N >= 191 fails to display the image. This patch resize larger image as we do in iterm/iterm.go, and make the image be displayed.

Regards,

mattn commented 3 years ago

Looks good. Thank you.