image_sorcery
image_sorcery copied to clipboard
A ruby Image/Graphics Magick library. Note: This project is no longer maintained.
ImageSorcery only supports `-commands`, but there are also some `+commands`, like [`+repage`](http://www.imagemagick.org/script/command-line-options.php#repage) ``` ruby def convert_to_arguments(args) special_args = [:layer, :annotate] args.reject {|k, v| special_args.include?(k) }.map {|k, v| " -#{k} '#{v}'"}...
Most of the methods share the same basic structure... It should be pretty easy to make less code duplication.
How would I create a gradient image using image_sorcery? http://www.imagemagick.org/Usage/canvas/#gradient_transparent Specifically, I want to run this command: `convert -size 100x100 gradient:none-firebrick gradient_transparent.png` How do I achieve that within image_sorcery?