1--TEST--
2using different image sizes imagecolormatch() of GD library
3--CREDITS--
4Paulo Alves de Sousa Filho <pspalves [at] gmail [dot] com>
5#testfest PHPSP on 2009-06-20
6--SKIPIF--
7<?php
8if (!extension_loaded("gd")) die("skip GD not present");
9?>
10--FILE--
11<?php
12$ima = imagecreatetruecolor(110, 20);
13$background_color = imagecolorallocate($ima, 0, 0, 0);
14$imb = imagecreate(100, 20);
15$background_color = imagecolorallocate($imb, 0, 0, 100);
16
17try {
18    imagecolormatch($ima, $imb);
19} catch (ValueError $exception) {
20    echo $exception->getMessage() . "\n";
21}
22
23?>
24--EXPECT--
25imagecolormatch(): Argument #2 ($image2) must be the same size as argument #1 ($im1)
26