unplugged-system/external/ImageMagick/api_examples
2025-10-06 13:59:42 +00:00
..
cli_operators.c Initial commit: AOSP 14 with modifications for Unplugged OS 2025-10-06 13:59:42 +00:00
cli_process.c Initial commit: AOSP 14 with modifications for Unplugged OS 2025-10-06 13:59:42 +00:00
magick_command.c Initial commit: AOSP 14 with modifications for Unplugged OS 2025-10-06 13:59:42 +00:00
magick_script.mgk Initial commit: AOSP 14 with modifications for Unplugged OS 2025-10-06 13:59:42 +00:00
magick_shell.sh Initial commit: AOSP 14 with modifications for Unplugged OS 2025-10-06 13:59:42 +00:00
README Initial commit: AOSP 14 with modifications for Unplugged OS 2025-10-06 13:59:42 +00:00
wand.c Initial commit: AOSP 14 with modifications for Unplugged OS 2025-10-06 13:59:42 +00:00

Every program in this directory is the equivelent of this Shell API
command...

  magick -size 100x100 xc:red \
        \( rose: -rotate -90 \) \
        +append   show:


Command should be expanded to show a simple image operation on a 
list of images!



Each however does so in its own way using various functions in the
ImageMagick Library.

Shell API...

  magick_shell.sh     A simple "magick" shell command (as above)
  magick_script.mgk   As a "magick" script file

MagickCLI API...

  magick_command.c    As a argument list to the MagickCommand function
  cli_process.c       Using the function that processes a argument list
  cli_operators.c     Using operator groups to process individual options

MagickWand API...

  wand.c              using a MagickWand