A 3D engine powered by ASCII art

asciimare A 3D engine powered by ASCII art. asciimare uses ASCII characters to display 3D graphics directly in the terminal. It is powered by python curses, and renders by raycasting on voxels. asciimare utilizes the combination of 95 printable ASCII characters 8 ANSI colors in the terminal to emulate a variety of hues and brightness. It first analyzes a given font and generate a continous and uniform range of shades, e.g. Menlo.ttc ““““““““““““””””””’……——- -,,,,,______::::::::^^^^^!!~~~””””””;;;;;;rrrrr++++||()==>> >>lllll???iiiccv[]ttzzjj7*ff{{}ssYYTJJJ111unnnnyyyyIIFFFFFFF oooooowe22h3Zaa44XXX%%%555PPPP$$$mmGGAAUUUUbbbppKKK96O##H&&D [email protected]@@@@@@@@@@@@NNNNNNNNNNNN and then plays […]

Read more

Convert any image into greyscale ASCII art in python

Image-to-ASCII Convert any image into greyscale ASCII art. Setup 1. Clone Repo git clonehttps://github.com/BSmith156/Image-to-ASCII.git 2. Install Requirements pip install -r requirements.txt Usage image_to_ascii.py input_file output_file [-i] [-max n] Arguments Argument Description input_file The image file being converted. output_file The file to store the ASCII art. -i Optional. Inverts the image colour, useful when displaying the output using a light font on a dark background. -max n Optional. Sets the maximum width/height of the output to n, 0 for no maximum. […]

Read more

Convert Image to ASCII Art in python

Convert Image to ASCII Art Persiapan aplikasi ini menggunakan bahasa python dan beberapa package python. oleh karena itu harus menginstall python dan beberapa packagenya, seperti berikut: install python. kalian bisa install python melalui website python. https://www.python.org/downloads/ pastikan jika python telah terinstall dengan mengetikan: python –version karena akan meninstall beberapa package pada python maka harus memastikan kalau PIP telah terinstall dengan mengetikan: pip –version install package tkinter. tkinter adalah package untuk membuat tampilan GUI pada python. pip install tk install package […]

Read more