Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to remove those background white dots that appear in the ascii version? #32

Open
ishank-dev opened this issue Mar 25, 2020 · 2 comments

Comments

@ishank-dev
Copy link

No description provided.

@m-simonelli
Copy link

Somewhat late, but if you have sed installed you can pipe the output of asciify into sed to replace .'s with spaces:

python3 ./asciify.py ./image.png | sed 's/\./ /g'

@RameshAditya
Copy link
Owner

RameshAditya commented Oct 18, 2020

Thanks for sharing a solution. While the way to change the actual implementation would be to replace ASCII_CHARS[-1] with a blank space character, the solution described above would be better since it's entirely user-facing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants