1 | <?php |
||
39 | class Exif implements ExifInterface |
||
40 | { |
||
41 | /** |
||
42 | * @var Aperture |
||
43 | */ |
||
44 | protected $aperture; |
||
45 | |||
46 | /** |
||
47 | * @var Author |
||
48 | */ |
||
49 | protected $author; |
||
50 | |||
51 | /** |
||
52 | * @var DateTimeImmutable |
||
53 | */ |
||
54 | protected $creationDate; |
||
55 | |||
56 | /** |
||
57 | * @var Dimensions |
||
58 | */ |
||
59 | protected $dimensions; |
||
60 | |||
61 | /** |
||
62 | * @var ExposureTime |
||
63 | */ |
||
64 | protected $exposureTime; |
||
65 | |||
66 | /** |
||
67 | * @var Filename |
||
68 | */ |
||
69 | protected $filename; |
||
70 | |||
71 | /** |
||
72 | * @var Filesize |
||
73 | */ |
||
74 | protected $filesize; |
||
75 | |||
76 | /** |
||
77 | * @var FocalLength |
||
78 | */ |
||
79 | protected $focalLength; |
||
80 | |||
81 | /** |
||
82 | * @var FocusDistance |
||
83 | */ |
||
84 | protected $focusDistance; |
||
85 | |||
86 | /** |
||
87 | * @var IsoSpeed |
||
88 | */ |
||
89 | protected $isoSpeed; |
||
90 | |||
91 | /** |
||
92 | * @var Make |
||
93 | */ |
||
94 | protected $make; |
||
95 | |||
96 | /** |
||
97 | * @var Model |
||
98 | */ |
||
99 | protected $model; |
||
100 | |||
101 | /** |
||
102 | * @var MimeType |
||
103 | */ |
||
104 | protected $mimeType; |
||
105 | |||
106 | /** |
||
107 | * @var Resolution |
||
108 | */ |
||
109 | protected $resolution; |
||
110 | |||
111 | /** |
||
112 | * @var Software |
||
113 | */ |
||
114 | protected $software; |
||
115 | |||
116 | /** |
||
117 | * {@inheritDoc} |
||
118 | */ |
||
119 | public function getAperture() |
||
123 | |||
124 | /** |
||
125 | * {@inheritDoc} |
||
126 | */ |
||
127 | public function withAperture(Aperture $aperture) |
||
134 | |||
135 | /** |
||
136 | * {@inheritDoc} |
||
137 | */ |
||
138 | public function getMimeType() |
||
142 | |||
143 | /** |
||
144 | * {@inheritDoc} |
||
145 | */ |
||
146 | public function withMimeType(MimeType $mimeType) |
||
153 | |||
154 | /** |
||
155 | * {@inheritDoc} |
||
156 | */ |
||
157 | public function getFilename() |
||
161 | |||
162 | /** |
||
163 | * {@inheritDoc} |
||
164 | */ |
||
165 | public function withFilename(Filename $filename) |
||
172 | |||
173 | /** |
||
174 | * {@inheritDoc} |
||
175 | */ |
||
176 | public function getFilesize() |
||
180 | |||
181 | /** |
||
182 | * {@inheritDoc} |
||
183 | */ |
||
184 | public function withFilesize(Filesize $filesize) |
||
191 | |||
192 | /** |
||
193 | * {@inheritDoc} |
||
194 | */ |
||
195 | public function getMake() |
||
199 | |||
200 | /** |
||
201 | * {@inheritDoc} |
||
202 | */ |
||
203 | public function withMake(Make $make) |
||
210 | |||
211 | /** |
||
212 | * {@inheritDoc} |
||
213 | */ |
||
214 | public function getModel() |
||
218 | |||
219 | /** |
||
220 | * {@inheritDoc} |
||
221 | */ |
||
222 | public function withModel(Model $model) |
||
229 | |||
230 | /** |
||
231 | * {@inheritDoc} |
||
232 | */ |
||
233 | public function getSoftware() |
||
237 | |||
238 | /** |
||
239 | * {@inheritDoc} |
||
240 | */ |
||
241 | public function withSoftware(Software $software) |
||
248 | |||
249 | /** |
||
250 | * {@inheritDoc} |
||
251 | */ |
||
252 | public function getAuthor() |
||
256 | |||
257 | /** |
||
258 | * {@inheritDoc} |
||
259 | */ |
||
260 | public function withAuthor(Author $author) |
||
267 | |||
268 | /** |
||
269 | * {@inheritDoc} |
||
270 | */ |
||
271 | public function getDimensions() |
||
275 | |||
276 | /** |
||
277 | * {@inheritDoc} |
||
278 | */ |
||
279 | public function withDimensions(Dimensions $dimensions) |
||
286 | |||
287 | /** |
||
288 | * {@inheritDoc} |
||
289 | */ |
||
290 | public function getFocalLength() |
||
294 | |||
295 | /** |
||
296 | * {@inheritDoc} |
||
297 | */ |
||
298 | public function withFocalLength(FocalLength $focalLength) |
||
305 | |||
306 | /** |
||
307 | * {@inheritDoc} |
||
308 | */ |
||
309 | public function getFocusDistance() |
||
313 | |||
314 | /** |
||
315 | * {@inheritDoc} |
||
316 | */ |
||
317 | public function withFocusDistance(FocusDistance $focusDistance) |
||
324 | |||
325 | /** |
||
326 | * {@inheritDoc} |
||
327 | */ |
||
328 | public function getExposureTime() |
||
332 | |||
333 | /** |
||
334 | * {@inheritDoc} |
||
335 | */ |
||
336 | public function withExposureTime(ExposureTime $exposureTime) |
||
343 | |||
344 | /** |
||
345 | * {@inheritDoc} |
||
346 | */ |
||
347 | public function getIsoSpeed() |
||
351 | |||
352 | /** |
||
353 | * {@inheritDoc} |
||
354 | */ |
||
355 | public function withIsoSpeed(IsoSpeed $isoSpeed) |
||
362 | |||
363 | /** |
||
364 | * {@inheritDoc} |
||
365 | */ |
||
366 | public function getCreationDate() |
||
370 | |||
371 | /** |
||
372 | * {@inheritDoc} |
||
373 | */ |
||
374 | public function withCreationDate(DateTimeImmutable $date) |
||
381 | |||
382 | /** |
||
383 | * {@inheritDoc} |
||
384 | */ |
||
385 | public function getResolution() |
||
389 | |||
390 | /** |
||
391 | * {@inheritDoc} |
||
392 | */ |
||
393 | public function withResolution(Resolution $resolution) |
||
400 | } |
||
401 |