forked from HvyIndustries/crane-php-stubs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
exif.php
147 lines (139 loc) · 4.87 KB
/
exif.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?php
// Start of exif v.1.4 $Id: 8bdc0c8f27c2c9dd1f7551f1f9fe3ab57a06a4b1 $
/**
* (PHP 4 >= 4.2.0, PHP 5, PHP 7)<br/>
* Reads the EXIF headers from JPEG or TIFF
* @link http://php.net/manual/en/function.exif-read-data.php
* @param string $filename <p>
* The name of the image file being read. This cannot be an
* URL.
* </p>
* @param string $sections [optional] <p>
* Is a comma separated list of sections that need to be present in file
* to produce a result array. If none of the requested
* sections could be found the return value is <b>FALSE</b>.
* <tr valign="top">
* <td>FILE</td>
* <td>FileName, FileSize, FileDateTime, SectionsFound</td>
* </tr>
* <tr valign="top">
* <td>COMPUTED</td>
* <td>
* html, Width, Height, IsColor, and more if available. Height and
* Width are computed the same way <b>getimagesize</b>
* does so their values must not be part of any header returned.
* Also, html is a height/width text string to be used inside normal
* HTML.
* </td>
* </tr>
* <tr valign="top">
* <td>ANY_TAG</td>
* <td>Any information that has a Tag e.g. IFD0, EXIF, ...</td>
* </tr>
* <tr valign="top">
* <td>IFD0</td>
* <td>
* All tagged data of IFD0. In normal imagefiles this contains
* image size and so forth.
* </td>
* </tr>
* <tr valign="top">
* <td>THUMBNAIL</td>
* <td>
* A file is supposed to contain a thumbnail if it has a second IFD.
* All tagged information about the embedded thumbnail is stored in
* this section.
* </td>
* </tr>
* <tr valign="top">
* <td>COMMENT</td>
* <td>Comment headers of JPEG images.</td>
* </tr>
* <tr valign="top">
* <td>EXIF</td>
* <td>
* The EXIF section is a sub section of IFD0. It contains
* more detailed information about an image. Most of these entries
* are digital camera related.
* </td>
* </tr>
* </p>
* @param bool $arrays [optional] <p>
* Specifies whether or not each section becomes an array. The
* <i>sections</i> COMPUTED,
* THUMBNAIL, and COMMENT
* always become arrays as they may contain values whose names conflict
* with other sections.
* </p>
* @param bool $thumbnail [optional] <p>
* When set to <b>TRUE</b> the thumbnail itself is read. Otherwise, only the
* tagged data is read.
* </p>
* @return array It returns an associative array where the array indexes are
* the header names and the array values are the values associated with
* those headers. If no data can be returned,
* <b>exif_read_data</b> will return <b>FALSE</b>.
*/
function exif_read_data(string $filename, string $sections = null, bool $arrays = false, bool $thumbnail = false): array {}
/**
* (PHP 4 >= 4.0.1, PHP 5, PHP 7)<br/>
* Alias of <b>exif_read_data</b>
* @link http://php.net/manual/en/function.read-exif-data.php
* @param $filename
* @param $sections_needed [optional]
* @param $sub_arrays [optional]
* @param $read_thumbnail [optional]
*/
function read_exif_data($filename, $sections_needed, $sub_arrays, $read_thumbnail) {}
/**
* (PHP 4 >= 4.2.0, PHP 5, PHP 7)<br/>
* Get the header name for an index
* @link http://php.net/manual/en/function.exif-tagname.php
* @param int $index <p>
* The Tag ID for which a Tag Name will be looked up.
* </p>
* @return string the header name, or <b>FALSE</b> if <i>index</i> is
* not a defined EXIF tag id.
*/
function exif_tagname(int $index): string {}
/**
* (PHP 4 >= 4.2.0, PHP 5, PHP 7)<br/>
* Retrieve the embedded thumbnail of a TIFF or JPEG image
* @link http://php.net/manual/en/function.exif-thumbnail.php
* @param string $filename <p>
* The name of the image file being read. This image contains an
* embedded thumbnail.
* </p>
* @param int $width [optional] <p>
* The return width of the returned thumbnail.
* </p>
* @param int $height [optional] <p>
* The returned height of the returned thumbnail.
* </p>
* @param int $imagetype [optional] <p>
* The returned image type of the returned thumbnail. This is either
* TIFF or JPEG.
* </p>
* @return string the embedded thumbnail, or <b>FALSE</b> if the image contains no
* thumbnail.
*/
function exif_thumbnail(string $filename, int &$width = null, int &$height = null, int &$imagetype = null): string {}
/**
* (PHP 4 >= 4.3.0, PHP 5, PHP 7)<br/>
* Determine the type of an image
* @link http://php.net/manual/en/function.exif-imagetype.php
* @param string $filename The image being checked.
* @return int When a correct signature is found, the appropriate constant value will be
* returned otherwise the return value is <b>FALSE</b>. The return value is the
* same value that <b>getimagesize</b> returns in index 2 but
* <b>exif_imagetype</b> is much faster.
* </p>
* <p>
* <b>exif_imagetype</b> will emit an <b>E_NOTICE</b>
* and return <b>FALSE</b> if it is unable to read enough bytes from the file to
* determine the image type.
*/
function exif_imagetype(string $filename): int {}
define ('EXIF_USE_MBSTRING', 1);
// End of exif v.1.4 $Id: 8bdc0c8f27c2c9dd1f7551f1f9fe3ab57a06a4b1 $
?>