Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
README | D | 23-Nov-2023 | 772 | 33 | 18 | |
cli_operators.c | D | 23-Nov-2023 | 1.6 KiB | 54 | 23 | |
cli_process.c | D | 23-Nov-2023 | 1.4 KiB | 51 | 20 | |
magick_command.c | D | 23-Nov-2023 | 1.5 KiB | 56 | 29 | |
magick_script.mgk | D | 23-Nov-2023 | 1.2 KiB | 40 | 23 | |
magick_shell.sh | D | 23-Nov-2023 | 150 | 8 | 3 | |
wand.c | D | 23-Nov-2023 | 4.1 KiB | 139 | 50 |
README
1 2Every program in this directory is the equivelent of this Shell API 3command... 4 5 magick -size 100x100 xc:red \ 6 \( rose: -rotate -90 \) \ 7 +append show: 8 9 10Command should be expanded to show a simple image operation on a 11list of images! 12 13 14 15Each however does so in its own way using various functions in the 16ImageMagick Library. 17 18Shell API... 19 20 magick_shell.sh A simple "magick" shell command (as above) 21 magick_script.mgk As a "magick" script file 22 23MagickCLI 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 29MagickWand API... 30 31 wand.c using a MagickWand 32 33