mirror of
https://github.com/Imagick/imagick.git
synced 2026-06-28 04:05:35 +00:00
e13218a607
Add basic support for ImageMagick 7, updated tests to not fail for functions removed in IM7. Added Travis tests against ImageMagick git dev repositories.
17 lines
260 B
PHP
17 lines
260 B
PHP
--TEST--
|
|
Test functionimage
|
|
--SKIPIF--
|
|
<?php
|
|
$imageMagickBelowVersion = 0x700;
|
|
require_once(dirname(__FILE__) . '/skipif.inc');
|
|
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$im = new Imagick ('magick:rose');
|
|
$im->convolveimage (array (1, 'a', 1));
|
|
|
|
echo "OK" . PHP_EOL;
|
|
?>
|
|
--EXPECT--
|
|
OK
|