1--TEST--
2Testing setting the interlace bit on with imageinterlace() of GD library
3--CREDITS--
4Edgar Ferreira da Silva <contato [at] edgarfs [dot] com [dot] br>
5#testfest PHPSP on 2009-06-20
6--EXTENSIONS--
7gd
8--FILE--
9<?php
10
11$image = imagecreatetruecolor(100, 100);
12
13var_dump(imageinterlace($image, true));
14var_dump(imageinterlace($image));
15?>
16--EXPECT--
17bool(true)
18bool(true)
19