xref: /PHP-8.4/ext/gd/tests/gif_nocolormaps.phpt (revision 38365a44)
1--TEST--
2A GIF without any Global or Local color tables is still decoded
3--EXTENSIONS--
4gd
5--FILE--
6<?php
7$im = imagecreatefromgif(__DIR__ . "/gif_nocolormaps.gif");
8var_dump($im instanceof GdImage);
9?>
10--EXPECT--
11bool(true)
12