1--TEST--
2does the imagepalettetotruecollor function really converts the image palette?
3--CREDITS--
4Carlos André Ferrari <caferrari [at] gmail [dot] com>
5--EXTENSIONS--
6gd
7--FILE--
8<?php
9$im = imagecreate(100, 100);
10var_dump($im instanceof GdImage);
11var_dump(imageistruecolor($im));
12var_dump(imagepalettetotruecolor($im));
13var_dump(imageistruecolor($im));
14imagedestroy($im);
15?>
16--EXPECT--
17bool(true)
18bool(false)
19bool(true)
20bool(true)
21