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 ExposureTime |
||
53 | */ |
||
54 | protected $exposureTime; |
||
55 | |||
56 | /** |
||
57 | * @var Filename |
||
58 | */ |
||
59 | protected $filename; |
||
60 | |||
61 | /** |
||
62 | * @var Filesize |
||
63 | */ |
||
64 | protected $filesize; |
||
65 | |||
66 | /** |
||
67 | * @var FocalLength |
||
68 | */ |
||
69 | protected $focalLength; |
||
70 | |||
71 | /** |
||
72 | * @var FocusDistance |
||
73 | */ |
||
74 | protected $focusDistance; |
||
75 | |||
76 | /** |
||
77 | * @var Height |
||
78 | */ |
||
79 | protected $height; |
||
80 | |||
81 | /** |
||
82 | * @var HorizontalResolution |
||
83 | */ |
||
84 | protected $horizontalResolution; |
||
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 Software |
||
108 | */ |
||
109 | protected $software; |
||
110 | |||
111 | /** |
||
112 | * @var VerticalResolution |
||
113 | */ |
||
114 | protected $verticalResolution; |
||
115 | |||
116 | /** |
||
117 | * @var Width |
||
118 | */ |
||
119 | protected $width; |
||
120 | |||
121 | /** |
||
122 | * {@inheritDoc} |
||
123 | */ |
||
124 | public function getAperture() |
||
128 | |||
129 | /** |
||
130 | * {@inheritDoc} |
||
131 | */ |
||
132 | public function withAperture(Aperture $aperture) |
||
139 | |||
140 | /** |
||
141 | * {@inheritDoc} |
||
142 | */ |
||
143 | public function getMimeType() |
||
147 | |||
148 | /** |
||
149 | * {@inheritDoc} |
||
150 | */ |
||
151 | public function withMimeType(MimeType $mimeType) |
||
158 | |||
159 | /** |
||
160 | * {@inheritDoc} |
||
161 | */ |
||
162 | public function getFilename() |
||
166 | |||
167 | /** |
||
168 | * {@inheritDoc} |
||
169 | */ |
||
170 | public function withFilename(Filename $filename) |
||
177 | |||
178 | /** |
||
179 | * {@inheritDoc} |
||
180 | */ |
||
181 | public function getFilesize() |
||
185 | |||
186 | /** |
||
187 | * {@inheritDoc} |
||
188 | */ |
||
189 | public function withFilesize(Filesize $filesize) |
||
196 | |||
197 | /** |
||
198 | * {@inheritDoc} |
||
199 | */ |
||
200 | public function getMake() |
||
204 | |||
205 | /** |
||
206 | * {@inheritDoc} |
||
207 | */ |
||
208 | public function withMake(Make $make) |
||
215 | |||
216 | /** |
||
217 | * {@inheritDoc} |
||
218 | */ |
||
219 | public function getModel() |
||
223 | |||
224 | /** |
||
225 | * {@inheritDoc} |
||
226 | */ |
||
227 | public function withModel(Model $model) |
||
234 | |||
235 | /** |
||
236 | * {@inheritDoc} |
||
237 | */ |
||
238 | public function getSoftware() |
||
242 | |||
243 | /** |
||
244 | * {@inheritDoc} |
||
245 | */ |
||
246 | public function withSoftware(Software $software) |
||
253 | |||
254 | /** |
||
255 | * {@inheritDoc} |
||
256 | */ |
||
257 | public function getAuthor() |
||
261 | |||
262 | /** |
||
263 | * {@inheritDoc} |
||
264 | */ |
||
265 | public function withAuthor(Author $author) |
||
272 | |||
273 | /** |
||
274 | * {@inheritDoc} |
||
275 | */ |
||
276 | public function getWidth() |
||
280 | |||
281 | /** |
||
282 | * {@inheritDoc} |
||
283 | */ |
||
284 | public function withWidth(Width $width) |
||
291 | |||
292 | /** |
||
293 | * {@inheritDoc} |
||
294 | */ |
||
295 | public function getHeight() |
||
299 | |||
300 | /** |
||
301 | * {@inheritDoc} |
||
302 | */ |
||
303 | public function withHeight(Height $height) |
||
310 | |||
311 | /** |
||
312 | * {@inheritDoc} |
||
313 | */ |
||
314 | public function getFocalLength() |
||
318 | |||
319 | /** |
||
320 | * {@inheritDoc} |
||
321 | */ |
||
322 | public function withFocalLength(FocalLength $focalLength) |
||
329 | |||
330 | /** |
||
331 | * {@inheritDoc} |
||
332 | */ |
||
333 | public function getFocusDistance() |
||
337 | |||
338 | /** |
||
339 | * {@inheritDoc} |
||
340 | */ |
||
341 | public function withFocusDistance(FocusDistance $focusDistance) |
||
348 | |||
349 | /** |
||
350 | * {@inheritDoc} |
||
351 | */ |
||
352 | public function getHorizontalResolution() |
||
356 | |||
357 | /** |
||
358 | * {@inheritDoc} |
||
359 | */ |
||
360 | public function withHorizontalResolution(HorizontalResolution $horizontalResolution) |
||
367 | |||
368 | /** |
||
369 | * {@inheritDoc} |
||
370 | */ |
||
371 | public function getVerticalResolution() |
||
375 | |||
376 | /** |
||
377 | * {@inheritDoc} |
||
378 | */ |
||
379 | public function withVerticalResolution(VerticalResolution $verticalResolution) |
||
386 | |||
387 | /** |
||
388 | * {@inheritDoc} |
||
389 | */ |
||
390 | public function getExposureTime() |
||
394 | |||
395 | /** |
||
396 | * {@inheritDoc} |
||
397 | */ |
||
398 | public function withExposureTime(ExposureTime $exposureTime) |
||
405 | |||
406 | /** |
||
407 | * {@inheritDoc} |
||
408 | */ |
||
409 | public function getIsoSpeed() |
||
413 | |||
414 | /** |
||
415 | * {@inheritDoc} |
||
416 | */ |
||
417 | public function withIsoSpeed(IsoSpeed $isoSpeed) |
||
424 | } |
||
425 |