1 | <?php |
||
40 | class Exif implements ExifInterface |
||
41 | { |
||
42 | /** |
||
43 | * @var Aperture |
||
44 | */ |
||
45 | protected $aperture; |
||
46 | |||
47 | /** |
||
48 | * @var Author |
||
49 | */ |
||
50 | protected $author; |
||
51 | |||
52 | /** |
||
53 | * @var Coordinates |
||
54 | */ |
||
55 | protected $coordinates; |
||
56 | |||
57 | /** |
||
58 | * @var DateTimeImmutable |
||
59 | */ |
||
60 | protected $creationDate; |
||
61 | |||
62 | /** |
||
63 | * @var Dimensions |
||
64 | */ |
||
65 | protected $dimensions; |
||
66 | |||
67 | /** |
||
68 | * @var ExposureTime |
||
69 | */ |
||
70 | protected $exposureTime; |
||
71 | |||
72 | /** |
||
73 | * @var Filename |
||
74 | */ |
||
75 | protected $filename; |
||
76 | |||
77 | /** |
||
78 | * @var Filesize |
||
79 | */ |
||
80 | protected $filesize; |
||
81 | |||
82 | /** |
||
83 | * @var FocalLength |
||
84 | */ |
||
85 | protected $focalLength; |
||
86 | |||
87 | /** |
||
88 | * @var FocusDistance |
||
89 | */ |
||
90 | protected $focusDistance; |
||
91 | |||
92 | /** |
||
93 | * @var IsoSpeed |
||
94 | */ |
||
95 | protected $isoSpeed; |
||
96 | |||
97 | /** |
||
98 | * @var Make |
||
99 | */ |
||
100 | protected $make; |
||
101 | |||
102 | /** |
||
103 | * @var Model |
||
104 | */ |
||
105 | protected $model; |
||
106 | |||
107 | /** |
||
108 | * @var MimeType |
||
109 | */ |
||
110 | protected $mimeType; |
||
111 | |||
112 | /** |
||
113 | * @var Resolution |
||
114 | */ |
||
115 | protected $resolution; |
||
116 | |||
117 | /** |
||
118 | * @var Software |
||
119 | */ |
||
120 | protected $software; |
||
121 | |||
122 | /** |
||
123 | * {@inheritDoc} |
||
124 | */ |
||
125 | public function getAperture() |
||
129 | |||
130 | /** |
||
131 | * {@inheritDoc} |
||
132 | */ |
||
133 | public function withAperture(Aperture $aperture) |
||
140 | |||
141 | /** |
||
142 | * {@inheritDoc} |
||
143 | */ |
||
144 | public function getMimeType() |
||
148 | |||
149 | /** |
||
150 | * {@inheritDoc} |
||
151 | */ |
||
152 | public function withMimeType(MimeType $mimeType) |
||
159 | |||
160 | /** |
||
161 | * {@inheritDoc} |
||
162 | */ |
||
163 | public function getFilename() |
||
167 | |||
168 | /** |
||
169 | * {@inheritDoc} |
||
170 | */ |
||
171 | public function withFilename(Filename $filename) |
||
178 | |||
179 | /** |
||
180 | * {@inheritDoc} |
||
181 | */ |
||
182 | public function getFilesize() |
||
186 | |||
187 | /** |
||
188 | * {@inheritDoc} |
||
189 | */ |
||
190 | public function withFilesize(Filesize $filesize) |
||
197 | |||
198 | /** |
||
199 | * {@inheritDoc} |
||
200 | */ |
||
201 | public function getMake() |
||
205 | |||
206 | /** |
||
207 | * {@inheritDoc} |
||
208 | */ |
||
209 | public function withMake(Make $make) |
||
216 | |||
217 | /** |
||
218 | * {@inheritDoc} |
||
219 | */ |
||
220 | public function getModel() |
||
224 | |||
225 | /** |
||
226 | * {@inheritDoc} |
||
227 | */ |
||
228 | public function withModel(Model $model) |
||
235 | |||
236 | /** |
||
237 | * {@inheritDoc} |
||
238 | */ |
||
239 | public function getSoftware() |
||
243 | |||
244 | /** |
||
245 | * {@inheritDoc} |
||
246 | */ |
||
247 | public function withSoftware(Software $software) |
||
254 | |||
255 | /** |
||
256 | * {@inheritDoc} |
||
257 | */ |
||
258 | public function getAuthor() |
||
262 | |||
263 | /** |
||
264 | * {@inheritDoc} |
||
265 | */ |
||
266 | public function withAuthor(Author $author) |
||
273 | |||
274 | /** |
||
275 | * {@inheritDoc} |
||
276 | */ |
||
277 | public function getDimensions() |
||
281 | |||
282 | /** |
||
283 | * {@inheritDoc} |
||
284 | */ |
||
285 | public function withDimensions(Dimensions $dimensions) |
||
292 | |||
293 | /** |
||
294 | * {@inheritDoc} |
||
295 | */ |
||
296 | public function getFocalLength() |
||
300 | |||
301 | /** |
||
302 | * {@inheritDoc} |
||
303 | */ |
||
304 | public function withFocalLength(FocalLength $focalLength) |
||
311 | |||
312 | /** |
||
313 | * {@inheritDoc} |
||
314 | */ |
||
315 | public function getFocusDistance() |
||
319 | |||
320 | /** |
||
321 | * {@inheritDoc} |
||
322 | */ |
||
323 | public function withFocusDistance(FocusDistance $focusDistance) |
||
330 | |||
331 | /** |
||
332 | * {@inheritDoc} |
||
333 | */ |
||
334 | public function getExposureTime() |
||
338 | |||
339 | /** |
||
340 | * {@inheritDoc} |
||
341 | */ |
||
342 | public function withExposureTime(ExposureTime $exposureTime) |
||
349 | |||
350 | /** |
||
351 | * {@inheritDoc} |
||
352 | */ |
||
353 | public function getIsoSpeed() |
||
357 | |||
358 | /** |
||
359 | * {@inheritDoc} |
||
360 | */ |
||
361 | public function withIsoSpeed(IsoSpeed $isoSpeed) |
||
368 | |||
369 | /** |
||
370 | * {@inheritDoc} |
||
371 | */ |
||
372 | public function getCreationDate() |
||
376 | |||
377 | /** |
||
378 | * {@inheritDoc} |
||
379 | */ |
||
380 | public function withCreationDate(DateTimeImmutable $date) |
||
387 | |||
388 | /** |
||
389 | * {@inheritDoc} |
||
390 | */ |
||
391 | public function getResolution() |
||
395 | |||
396 | /** |
||
397 | * {@inheritDoc} |
||
398 | */ |
||
399 | public function withResolution(Resolution $resolution) |
||
406 | |||
407 | /** |
||
408 | * {@inheritDoc} |
||
409 | */ |
||
410 | public function getCoordinates() |
||
414 | |||
415 | /** |
||
416 | * {@inheritDoc} |
||
417 | */ |
||
418 | public function withCoordinates(Coordinates $coordinates) |
||
425 | } |
||
426 |