xref: /PHP-8.1/ext/gd/tests/imagetypes_tga.phpt (revision a375d547)
1--TEST--
2imagetypes() - TGA support
3--EXTENSIONS--
4gd
5--FILE--
6<?php
7var_dump((imagetypes() & IMG_TGA) == function_exists('imagecreatefromtga'));
8?>
9--EXPECT--
10bool(true)
11