Home | History | Annotate | only in /external/ImageMagick/api_examples
Up to higher level directory
NameDateSize
cli_operators.c05-Oct-20171.6K
cli_process.c05-Oct-20171.4K
magick.sh05-Oct-201796
magick_command.c05-Oct-20171.5K
magick_script05-Oct-20171.1K
README05-Oct-2017772
wand.c05-Oct-20174K

README

      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 
     31   wand.c              using a MagickWand
     32 
     33