Giter Site home page Giter Site logo

sixelcrop's Introduction

sixelcrop

PyPI - Version PyPI - Python Version

Crop sixel images in sixel-space!

sixelcrop is a Python library and command line tool to crop sixel images


Installation

pipx install sixelcrop
# OR
pip install sixelcrop

Usage

Command Line

usage: sixelcrop [--help] [-x int] [-y int] [-w int] [-h int] [--no-private-colors] Path

Crop a sixel image in sixel space

positional arguments:
  Path                  Path to sixel image file (use '-' to read data from standard input)

options:
  --help
  -x int, --left int    The offset of the left edge of the target region
  -y int, --top int     The offset of the top edge of the target region
  -w int, --width int   The width of the target region
  -h int, --height int  The height of the target region
  --no-private-colors   Do not use private colors for each graphic

Example:

curl https://www.python.org/static/img/[email protected] | img2sixel | sixelcrop -x 10 -y 15 -w 120 -h 125 -

Python API

import sys
from sixelcrop import sixelcrop

with open("snake.six") as f:
    data = f.read()

sys.stdout.write(sixelcrop(data, x=300, y=50, w=200, h=150))

License

sixelcrop is distributed under the terms of the MIT license.

sixelcrop's People

Contributors

joouha avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

sixelcrop's Issues

issues with sixel not from libsixel

I just tested your lib with various inputs - works pretty nice with images coming from img2sixel.

Still I think you make some assumptions about the sixel layout, that are not strictly given by the format:

  • Colors get scrambled, when running with --high-color switch of img2sixel. Background here - color registers may change at any time again. The question where to apply which color is typically bound to indexed (terminal mode) vs. immediately coloring (printer mode). Most terminals as of today do the printer mode here, only older ones (vt340, xterm) do the real shared palette indexed thing.
  • Most of older sixels here dont work out of the box. It seems that I can get most working by setting an explicit height argument. Some still fail due to rigged right side of sixel bands though. In general sixel is a canvas print protocol, thus you cannot expect width/height to be set upfront and all bands to fullfill the correct width, instead you'd have to trace the cursor movements with its pixel coloring for the area of interest. (The size assumptions you made here are more a result of how the libsixel encoder typically shapes things, but that not required by the format spec.)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.