xref: /imagick/tests/025-function-image.phpt (revision e13218a6)
1--TEST--
2Test functionimage
3--SKIPIF--
4<?php
5$imageMagickBelowVersion = 0x700;
6require_once(dirname(__FILE__) . '/skipif.inc');
7
8?>
9--FILE--
10<?php
11$im = new Imagick ('magick:rose');
12$im->convolveimage (array (1, 'a', 1));
13
14echo "OK" . PHP_EOL;
15?>
16--EXPECT--
17OK