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 DateTimeImmutable |
||
54 | */ |
||
55 | protected $creationDate; |
||
56 | |||
57 | /** |
||
58 | * @var ExposureTime |
||
59 | */ |
||
60 | protected $exposureTime; |
||
61 | |||
62 | /** |
||
63 | * @var Filename |
||
64 | */ |
||
65 | protected $filename; |
||
66 | |||
67 | /** |
||
68 | * @var Filesize |
||
69 | */ |
||
70 | protected $filesize; |
||
71 | |||
72 | /** |
||
73 | * @var FocalLength |
||
74 | */ |
||
75 | protected $focalLength; |
||
76 | |||
77 | /** |
||
78 | * @var FocusDistance |
||
79 | */ |
||
80 | protected $focusDistance; |
||
81 | |||
82 | /** |
||
83 | * @var Height |
||
84 | */ |
||
85 | protected $height; |
||
86 | |||
87 | /** |
||
88 | * @var HorizontalResolution |
||
89 | */ |
||
90 | protected $horizontalResolution; |
||
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 Software |
||
114 | */ |
||
115 | protected $software; |
||
116 | |||
117 | /** |
||
118 | * @var VerticalResolution |
||
119 | */ |
||
120 | protected $verticalResolution; |
||
121 | |||
122 | /** |
||
123 | * @var Width |
||
124 | */ |
||
125 | protected $width; |
||
126 | |||
127 | /** |
||
128 | * {@inheritDoc} |
||
129 | */ |
||
130 | public function getAperture() |
||
134 | |||
135 | /** |
||
136 | * {@inheritDoc} |
||
137 | */ |
||
138 | public function withAperture(Aperture $aperture) |
||
145 | |||
146 | /** |
||
147 | * {@inheritDoc} |
||
148 | */ |
||
149 | public function getMimeType() |
||
153 | |||
154 | /** |
||
155 | * {@inheritDoc} |
||
156 | */ |
||
157 | public function withMimeType(MimeType $mimeType) |
||
164 | |||
165 | /** |
||
166 | * {@inheritDoc} |
||
167 | */ |
||
168 | public function getFilename() |
||
172 | |||
173 | /** |
||
174 | * {@inheritDoc} |
||
175 | */ |
||
176 | public function withFilename(Filename $filename) |
||
183 | |||
184 | /** |
||
185 | * {@inheritDoc} |
||
186 | */ |
||
187 | public function getFilesize() |
||
191 | |||
192 | /** |
||
193 | * {@inheritDoc} |
||
194 | */ |
||
195 | public function withFilesize(Filesize $filesize) |
||
202 | |||
203 | /** |
||
204 | * {@inheritDoc} |
||
205 | */ |
||
206 | public function getMake() |
||
210 | |||
211 | /** |
||
212 | * {@inheritDoc} |
||
213 | */ |
||
214 | public function withMake(Make $make) |
||
221 | |||
222 | /** |
||
223 | * {@inheritDoc} |
||
224 | */ |
||
225 | public function getModel() |
||
229 | |||
230 | /** |
||
231 | * {@inheritDoc} |
||
232 | */ |
||
233 | public function withModel(Model $model) |
||
240 | |||
241 | /** |
||
242 | * {@inheritDoc} |
||
243 | */ |
||
244 | public function getSoftware() |
||
248 | |||
249 | /** |
||
250 | * {@inheritDoc} |
||
251 | */ |
||
252 | public function withSoftware(Software $software) |
||
259 | |||
260 | /** |
||
261 | * {@inheritDoc} |
||
262 | */ |
||
263 | public function getAuthor() |
||
267 | |||
268 | /** |
||
269 | * {@inheritDoc} |
||
270 | */ |
||
271 | public function withAuthor(Author $author) |
||
278 | |||
279 | /** |
||
280 | * {@inheritDoc} |
||
281 | */ |
||
282 | public function getWidth() |
||
286 | |||
287 | /** |
||
288 | * {@inheritDoc} |
||
289 | */ |
||
290 | public function withWidth(Width $width) |
||
297 | |||
298 | /** |
||
299 | * {@inheritDoc} |
||
300 | */ |
||
301 | public function getHeight() |
||
305 | |||
306 | /** |
||
307 | * {@inheritDoc} |
||
308 | */ |
||
309 | public function withHeight(Height $height) |
||
316 | |||
317 | /** |
||
318 | * {@inheritDoc} |
||
319 | */ |
||
320 | public function getFocalLength() |
||
324 | |||
325 | /** |
||
326 | * {@inheritDoc} |
||
327 | */ |
||
328 | public function withFocalLength(FocalLength $focalLength) |
||
335 | |||
336 | /** |
||
337 | * {@inheritDoc} |
||
338 | */ |
||
339 | public function getFocusDistance() |
||
343 | |||
344 | /** |
||
345 | * {@inheritDoc} |
||
346 | */ |
||
347 | public function withFocusDistance(FocusDistance $focusDistance) |
||
354 | |||
355 | /** |
||
356 | * {@inheritDoc} |
||
357 | */ |
||
358 | public function getHorizontalResolution() |
||
362 | |||
363 | /** |
||
364 | * {@inheritDoc} |
||
365 | */ |
||
366 | public function withHorizontalResolution(HorizontalResolution $horizontalResolution) |
||
373 | |||
374 | /** |
||
375 | * {@inheritDoc} |
||
376 | */ |
||
377 | public function getVerticalResolution() |
||
381 | |||
382 | /** |
||
383 | * {@inheritDoc} |
||
384 | */ |
||
385 | public function withVerticalResolution(VerticalResolution $verticalResolution) |
||
392 | |||
393 | /** |
||
394 | * {@inheritDoc} |
||
395 | */ |
||
396 | public function getExposureTime() |
||
400 | |||
401 | /** |
||
402 | * {@inheritDoc} |
||
403 | */ |
||
404 | public function withExposureTime(ExposureTime $exposureTime) |
||
411 | |||
412 | /** |
||
413 | * {@inheritDoc} |
||
414 | */ |
||
415 | public function getIsoSpeed() |
||
419 | |||
420 | /** |
||
421 | * {@inheritDoc} |
||
422 | */ |
||
423 | public function withIsoSpeed(IsoSpeed $isoSpeed) |
||
430 | |||
431 | /** |
||
432 | * {@inheritDoc} |
||
433 | */ |
||
434 | public function getCreationDate() |
||
438 | |||
439 | /** |
||
440 | * {@inheritDoc} |
||
441 | */ |
||
442 | public function withCreationDate(DateTimeImmutable $date) |
||
449 | } |
||
450 |