xref: /PHP-7.4/ext/exif/tests/bug72819/bug72819.phpt (revision 26dfce7f)
1--TEST--
2Bug #72819 (EXIF thumbnails not read anymore)
3--SKIPIF--
4<?php if (!extension_loaded('exif')) print 'skip exif extension not available';?>
5--INI--
6output_handler=
7zlib.output_compression=0
8--FILE--
9<?php
10$infile = __DIR__.'/bug72819.jpg';
11var_dump(strlen(exif_thumbnail($infile)));
12?>
13===DONE===
14--EXPECT--
15int(5448)
16===DONE===
17