Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

6 лет назад
6 лет назад
12345678910111213141516171819
  1. # stitchify
  2. Convert pixel art to cross-stitch patterns
  3. Requires Python 3, PIL
  4. This tool assumes that 1px = 1 stitch.
  5. I'm deliberately not randomizing the symbols. Sending the same input image should result in the same output image every time.
  6. TODO:
  7. * Accept image name on command line.
  8. * Change characters to symbols for ease of reading.
  9. * Expand number of symbols.
  10. * Create image from symbolized pixels instead of just printing to screen.
  11. * Add grid lines and edge labels to image.
  12. * Add legend to image, based on the `symbols` dictionary.
  13. * Correspond hex colors to floss colors, where possible.
  14. * (Maybe) add stitch count for each color.
  15. * (Maybe) add GUI.