android13/external/ImageMagick/MagickWand/tests
liiir1985 7f62dcda9f initial 2024-06-22 20:45:49 +08:00
..
Makefile initial 2024-06-22 20:45:49 +08:00
README initial 2024-06-22 20:45:49 +08:00
add_first.c initial 2024-06-22 20:45:49 +08:00
add_first_lists.c initial 2024-06-22 20:45:49 +08:00
add_index.c initial 2024-06-22 20:45:49 +08:00
add_last.c initial 2024-06-22 20:45:49 +08:00
add_last_lists.c initial 2024-06-22 20:45:49 +08:00
add_mixed.c initial 2024-06-22 20:45:49 +08:00
add_mixed_lists.c initial 2024-06-22 20:45:49 +08:00
add_norm.c initial 2024-06-22 20:45:49 +08:00
add_norm_lists.c initial 2024-06-22 20:45:49 +08:00
font_0.gif initial 2024-06-22 20:45:49 +08:00
font_1.gif initial 2024-06-22 20:45:49 +08:00
font_2.gif initial 2024-06-22 20:45:49 +08:00
font_3.gif initial 2024-06-22 20:45:49 +08:00
font_4.gif initial 2024-06-22 20:45:49 +08:00
font_5.gif initial 2024-06-22 20:45:49 +08:00
font_6.gif initial 2024-06-22 20:45:49 +08:00
font_7.gif initial 2024-06-22 20:45:49 +08:00
font_8.gif initial 2024-06-22 20:45:49 +08:00
font_9.gif initial 2024-06-22 20:45:49 +08:00
loop_over_lists.c initial 2024-06-22 20:45:49 +08:00
script-token-test-data.txt initial 2024-06-22 20:45:49 +08:00
script-token-test-results.txt initial 2024-06-22 20:45:49 +08:00
script-token-test.c initial 2024-06-22 20:45:49 +08:00
script-token-test.sh initial 2024-06-22 20:45:49 +08:00

README

These file provide simple examples and testing of aspects of the
MagickWand API.

Specifically
  + MagickAddImage() (also use by MagickReadImage() ) in various situations
    with a single images, or a list of images.  Study of the examples
    details exactly what the API does.

  + GetScriptToken ()  doing low level testing of the tokenization (argument
    separation) the "magick" command applies when reading command options
    from a script, or pipeline. The Tokenization is designed specifically to
    emulate the BASH shell. In this way you would write scripts in exactly the
    same way you would write BASH shell command line arguments.

    Tests include quoting, mixed quoting, backslash escapes, line
    continuation, extremely long tokens, and various error conditions.