mirror of
https://github.com/php/php-src.git
synced 2025-01-08 12:04:24 +08:00
743591458c
We also allow sections needed to be null.
14 lines
418 B
PHP
14 lines
418 B
PHP
<?php
|
|
|
|
/** @return string|false */
|
|
function exif_tagname(int $index) {}
|
|
|
|
/** @return array|false */
|
|
function exif_read_data($filename, ?string $sections_needed = null, bool $sub_arrays = false, bool $read_thumbnail = false) {}
|
|
|
|
/** @return string|false */
|
|
function exif_thumbnail($filename, &$width = null, &$height = null, &$imagetype = null) {}
|
|
|
|
/** @return int|false */
|
|
function exif_imagetype(string $filename) {}
|