Create ascii art quine from image file.
You can try aaq easily with yskoht/aaq.
# Download sample image
curl -O https://github-media-downloads.s3.amazonaws.com/Octocats.zip && unzip Octocats.zip
# Mount current directory to read image file
docker run --rm -v $(pwd):/root yskoht/aaq aaq Octocat/Octocat.png --color
$ gem install aaq
Simple quine.
aaq Octocat/Octocat.png
Colorful quine.
aaq Octocat/Octocat.png --color
Delete escape sequence.
aaq Octocat/Octocat.png --color | ruby -ne 'puts $_.gsub(/\e.*?m/, "")' | ruby
Put --color
option.
aaq Octocat/Octocat.png | xargs -0 -J % ruby -e % '' --color
In your source code.
require 'aaq'
puts AAQ::AAQ.new(img_file_name).convert
Bug reports and pull requests are welcome on GitHub at https://github.com/yskoht/aaq.
The gem is available as open source under the terms of the MIT License.