.. code-block:: python

    >>> from sys import stdout
    >>> from retrofont.charset import read_rom, print_glyph
    >>> with open('data/mz700fon.int', 'rb') as handle:
    ...     charset = read_rom(handle)
    ...
    >>> print_glyph(stdout, charset[0][1])
     ####  
    #    # 
    #    # 
    ###### 
    #    # 
    #    # 
    #    # 


.. code-block:: python
    >>> from retrofont.trace import Tracer
    >>> tracer = Tracer()
    >>> tracer.load_bin(charset[0][1])
    >>> tracer.draw()
    >>> tracer.print(stdout)
        🡲🡲🡲🡲🡲🡲🡲🡳    
        🡱🡰🡰🡰🡰🡰🡰🡰    
      🡲🡳        🡲🡳  
      🡱🡳        🡱🡳  
      🡱🡳        🡱🡳  
      🡱🡳        🡱🡳  
      🡱🡲🡲🡲🡲🡲🡲🡲🡲🡲🡱🡳  
      🡱🡳🡰🡰🡰🡰🡰🡰🡰🡰🡰🡳  
      🡱🡳        🡱🡳  
      🡱🡳        🡱🡳  
      🡱🡳        🡱🡳  
      🡱🡳        🡱🡳  
      🡱🡳        🡱🡳  
      🡱🡰        🡱🡰  
                    
                    
    [(0, 2), (0, 6), (1, 6), (1, 2)]
    [(1, 1), (1, 2), (3, 2), (3, 6), (1, 6), (1, 7), (7, 7), (7, 6), (4, 6), (4, 2), (7, 2), (7, 1)]

