看到一些群里发的字符画感觉挺有趣的,然后就想着自己做一个小工具将图片转为字符文本,刚好可以拿 go 来练手, 顺便熟悉下 go 的一些库,在做命令行版本后又做了一个网页版,同时编译打包为一个文件。
在GitHub, 提供了 windows、linux、osx 的可执行文件和源码,如果对图片处理或者代码有更好的建议,还请赐教。
./bin/ascii_converter -image-path="./test.png"
# 获取参数帮助信息
./bin/ascii_converter -h
-bg string
The background of the ascii art image file.(Only useful when image-out i s true, red|gray|green|blue|black are available). (default "black")
-characters string
The chars in the value will be used to generate ascii art. (default "M80 V1i:*|, ")
-color string
The color of the ascii font in image file.(Only useful when image-out is true, red|gray|green|blue|black are available). (default "gray")
-image-out
If set to true, will also output the ascii art to an image file
-image-out-path string
If imageOut is true, add this option to print the picture to file.
-image-path string
The path of the picture file(jpg/png).
-image-url string
The url of the picture file(jpg/png).
-ip string
The address to bind. (default "127.0.0.1:8080")
-server
Set true to enable web ui server
-sub-height int
The height of the piece of small rectangle (default 10)
-sub-width int
The width of the piece of small rectangle (default 10)
# 启动 http 服务
./bin/ascii_converter -server=true
启动 http 服务后通过浏览器访问 http://127.0.0.1:8080 可以通过 web 界面进行操作。
感觉用 go 来写一些小工具挺方便的,跨平台,而且静态资源文件可以通过 go-bindata 生成 go 源文件,可以和源码一起打包成一个可执行文件,直接一个文件就可以发布执行,不需要安装各种依赖,真爽!
放上一个转换后的例子:
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.