code2img
can generate image of source code.
This was inspired by carbon and silicon
- Doesn't need browser & Internet
- Copy image of source code to clipboard
- Supported some color schemes
- Supported some languages
$ code2img
code2img - generate image of source code
Version: 1.2.0
Usage:
$ code2img -t monokai main.go main.png
$ echo 'fmt.Println("Hello World")' | code2img -ext go -t native -o sample.png
$ code2img -c main.go
-t color theme(default: solarized-dark)
-o output file name(default: out.png)
-c copy to clipboard
-l print line
-ext file extension
xclip
(if copy image to clipboard in linux)
$ git clone https://github.com/skanehira/code2img
$ cd code2img && go install
skanehira