MagickReadImages
MagickReadImages -- reads an array of image filenames into the MagickWand
Description
bool MagickReadImages( MagickWand mgck_wand, array img_filenames_array )
Reads an array of image filenames into the MagickWand. Returns TRUE on success, FALSE if an error occurred. Allows PHP constructs like: MagickReadImages( $mgck_wand, glob( './*.jpg' ) ); for rapid reading of all the JPEG images in the current directory ("glob" is present in PHP5+).
A description of each parameter follows:
| mgck_wnd | A MagickWand |
| img_filenames_array | An array of image filenames |