There is a trick to keep the pixel ratio squared. The idea is to split a rectangular char into 2 pixels. To do so, Unicode lower half blocks u'\u2584' is used to draw the bottom pixel and the background color to draw the top one (or vice versa).
It is used in these projects:
Pros
- Pixel squared
- Can still draw a blinky cursor
- Cool hacking solution π±βπ»
Cons
- Might loose mouse support since this require to get which one of the 2 pixels has been clicked
- Require Unicode 1.1.0 (June, 1993) support
There is a trick to keep the pixel ratio squared. The idea is to split a rectangular char into 2 pixels. To do so, Unicode lower half blocks
u'\u2584'is used to draw the bottom pixel and the background color to draw the top one (or vice versa).It is used in these projects:
Pros
Cons