mirror of
https://github.com/php/php-src.git
synced 2026-03-25 16:52:18 +01:00
19 lines
549 B
PHP
19 lines
549 B
PHP
<?php
|
|
|
|
/** @generate-function-entries */
|
|
|
|
function exif_tagname(int $index): string|false {}
|
|
|
|
/** @param resource|string $filename */
|
|
function exif_read_data($filename, ?string $sections_needed = null, bool $sub_arrays = false, bool $read_thumbnail = false): array|false {}
|
|
|
|
/**
|
|
* @param resource|string $filename
|
|
* @param int $width
|
|
* @param int $height
|
|
* @param int $imagetype
|
|
*/
|
|
function exif_thumbnail($filename, &$width = null, &$height = null, &$imagetype = null): string|false {}
|
|
|
|
function exif_imagetype(string $filename): int|false {}
|