anthony | 25247ae | 2013-03-18 05:05:40 +0000 | [diff] [blame] | 1 | |
| 2 | Every program in this directory is the equivelent of this Shell API |
| 3 | command... |
| 4 | |
| 5 | magick -size 100x100 xc:red \ |
| 6 | \( rose: -rotate -90 \) \ |
| 7 | +append show: |
| 8 | |
| 9 | |
| 10 | Command should be expanded to show a simple image operation on a |
| 11 | list of images! |
| 12 | |
| 13 | |
| 14 | |
| 15 | Each however does so in its own way using various functions in the |
| 16 | ImageMagick Library. |
| 17 | |
| 18 | Shell API... |
| 19 | |
| 20 | magick.sh A simple "magick" shell command (as above) |
| 21 | magick_script As a "magick" script file |
| 22 | |
| 23 | MagickCLI API... |
| 24 | |
| 25 | magick_command.c As a argument list to the MagickCommand function |
| 26 | cli_process.c Using the function that processes a argument list |
| 27 | cli_operators.c Using operator groups to process individual options |
| 28 | |
| 29 | MagickWand API... |
| 30 | |
anthony | 686c3e5 | 2013-04-30 01:53:53 +0000 | [diff] [blame] | 31 | wand.c using a MagickWand |
anthony | 25247ae | 2013-03-18 05:05:40 +0000 | [diff] [blame] | 32 | |