Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jwilk/abmagick

abuse ImageMagick (or GraphicsMagick) to create arbitrary files
https://github.com/jwilk/abmagick

security

Last synced: 6 days ago
JSON representation

abuse ImageMagick (or GraphicsMagick) to create arbitrary files

Awesome Lists containing this project

README

        

.. code:: console

$ abmagick hello <<< 'Hello world!'
convert 'xc:#6C6C6C' -resize '1x13!' -depth 8 -fill '#484848' -draw 'point 0,0' -fill '#656565' -draw 'point 0,1' -fill '#6F6F6F' -draw 'point 0,4' -fill '#202020' -draw 'point 0,5' -fill '#777' -draw 'point 0,6' -fill '#6F6F6F' -draw 'point 0,7' -fill '#727272' -draw 'point 0,8' -fill '#646464' -draw 'point 0,10' -fill '#212121' -draw 'point 0,11' -fill '#0A0A0A' -draw 'point 0,12' gray:hello

$ cat hello
cat: hello: No such file or directory

$ abmagick hello <<< 'Hello world!' | sh

$ cat hello
Hello world!

.. vim:ft=rst ts=3 sts=3 sw=3 et