1 | <?php |
||
41 | class Exif implements ExifInterface |
||
42 | { |
||
43 | /** |
||
44 | * @var Aperture |
||
45 | */ |
||
46 | protected $aperture; |
||
47 | |||
48 | /** |
||
49 | * @var Author |
||
50 | */ |
||
51 | protected $author; |
||
52 | |||
53 | /** |
||
54 | * @var Caption |
||
55 | */ |
||
56 | protected $caption; |
||
57 | |||
58 | /** |
||
59 | * @var Copyright |
||
60 | */ |
||
61 | protected $copyright; |
||
62 | |||
63 | /** |
||
64 | * @var Credit |
||
65 | */ |
||
66 | protected $credit; |
||
67 | |||
68 | /** |
||
69 | * @var Filename |
||
70 | */ |
||
71 | protected $filename; |
||
72 | |||
73 | /** |
||
74 | * @var Filesize |
||
75 | */ |
||
76 | protected $filesize; |
||
77 | |||
78 | /** |
||
79 | * @var FocalLength |
||
80 | */ |
||
81 | protected $focalLength; |
||
82 | |||
83 | /** |
||
84 | * @var FocusDistance |
||
85 | */ |
||
86 | protected $focusDistance; |
||
87 | |||
88 | /** |
||
89 | * @var Headline |
||
90 | */ |
||
91 | protected $headline; |
||
92 | |||
93 | /** |
||
94 | * @var Height |
||
95 | */ |
||
96 | protected $height; |
||
97 | |||
98 | /** |
||
99 | * @var HorizontalResolution |
||
100 | */ |
||
101 | protected $horizontalResolution; |
||
102 | |||
103 | /** |
||
104 | * @var Make |
||
105 | */ |
||
106 | protected $make; |
||
107 | |||
108 | /** |
||
109 | * @var Model |
||
110 | */ |
||
111 | protected $model; |
||
112 | |||
113 | /** |
||
114 | * @var MimeType |
||
115 | */ |
||
116 | protected $mimeType; |
||
117 | |||
118 | /** |
||
119 | * @var Software |
||
120 | */ |
||
121 | protected $software; |
||
122 | |||
123 | /** |
||
124 | * @var VerticalResolution |
||
125 | */ |
||
126 | protected $verticalResolution; |
||
127 | |||
128 | /** |
||
129 | * @var Width |
||
130 | */ |
||
131 | protected $width; |
||
132 | |||
133 | /** |
||
134 | * {@inheritDoc} |
||
135 | */ |
||
136 | public function getAperture() |
||
140 | |||
141 | /** |
||
142 | * {@inheritDoc} |
||
143 | */ |
||
144 | public function withAperture(Aperture $aperture) |
||
151 | |||
152 | /** |
||
153 | * {@inheritDoc} |
||
154 | */ |
||
155 | public function getMimeType() |
||
159 | |||
160 | /** |
||
161 | * {@inheritDoc} |
||
162 | */ |
||
163 | public function withMimeType(MimeType $mimeType) |
||
170 | |||
171 | /** |
||
172 | * {@inheritDoc} |
||
173 | */ |
||
174 | public function getFilename() |
||
178 | |||
179 | /** |
||
180 | * {@inheritDoc} |
||
181 | */ |
||
182 | public function withFilename(Filename $filename) |
||
189 | |||
190 | /** |
||
191 | * {@inheritDoc} |
||
192 | */ |
||
193 | public function getFilesize() |
||
197 | |||
198 | /** |
||
199 | * {@inheritDoc} |
||
200 | */ |
||
201 | public function withFilesize(Filesize $filesize) |
||
208 | |||
209 | /** |
||
210 | * {@inheritDoc} |
||
211 | */ |
||
212 | public function getMake() |
||
216 | |||
217 | /** |
||
218 | * {@inheritDoc} |
||
219 | */ |
||
220 | public function withMake(Make $make) |
||
227 | |||
228 | /** |
||
229 | * {@inheritDoc} |
||
230 | */ |
||
231 | public function getModel() |
||
235 | |||
236 | /** |
||
237 | * {@inheritDoc} |
||
238 | */ |
||
239 | public function withModel(Model $model) |
||
246 | |||
247 | /** |
||
248 | * {@inheritDoc} |
||
249 | */ |
||
250 | public function getSoftware() |
||
254 | |||
255 | /** |
||
256 | * {@inheritDoc} |
||
257 | */ |
||
258 | public function withSoftware(Software $software) |
||
265 | |||
266 | /** |
||
267 | * {@inheritDoc} |
||
268 | */ |
||
269 | public function getHeadline() |
||
273 | |||
274 | /** |
||
275 | * {@inheritDoc} |
||
276 | */ |
||
277 | public function withHeadline(Headline $headline) |
||
284 | |||
285 | /** |
||
286 | * {@inheritDoc} |
||
287 | */ |
||
288 | public function getCredit() |
||
292 | |||
293 | /** |
||
294 | * {@inheritDoc} |
||
295 | */ |
||
296 | public function withCredit(Credit $credit) |
||
303 | |||
304 | /** |
||
305 | * {@inheritDoc} |
||
306 | */ |
||
307 | public function getCopyright() |
||
311 | |||
312 | /** |
||
313 | * {@inheritDoc} |
||
314 | */ |
||
315 | public function withCopyright(Copyright $copyright) |
||
322 | |||
323 | /** |
||
324 | * {@inheritDoc} |
||
325 | */ |
||
326 | public function getCaption() |
||
330 | |||
331 | /** |
||
332 | * {@inheritDoc} |
||
333 | */ |
||
334 | public function withCaption(Caption $caption) |
||
341 | |||
342 | /** |
||
343 | * {@inheritDoc} |
||
344 | */ |
||
345 | public function getAuthor() |
||
349 | |||
350 | /** |
||
351 | * {@inheritDoc} |
||
352 | */ |
||
353 | public function withAuthor(Author $author) |
||
360 | |||
361 | /** |
||
362 | * {@inheritDoc} |
||
363 | */ |
||
364 | public function getWidth() |
||
368 | |||
369 | /** |
||
370 | * {@inheritDoc} |
||
371 | */ |
||
372 | public function withWidth(Width $width) |
||
379 | |||
380 | /** |
||
381 | * {@inheritDoc} |
||
382 | */ |
||
383 | public function getHeight() |
||
387 | |||
388 | /** |
||
389 | * {@inheritDoc} |
||
390 | */ |
||
391 | public function withHeight(Height $height) |
||
398 | |||
399 | /** |
||
400 | * {@inheritDoc} |
||
401 | */ |
||
402 | public function getFocalLength() |
||
406 | |||
407 | /** |
||
408 | * {@inheritDoc} |
||
409 | */ |
||
410 | public function withFocalLength(FocalLength $focalLength) |
||
417 | |||
418 | /** |
||
419 | * {@inheritDoc} |
||
420 | */ |
||
421 | public function getFocusDistance() |
||
425 | |||
426 | /** |
||
427 | * {@inheritDoc} |
||
428 | */ |
||
429 | public function withFocusDistance(FocusDistance $focusDistance) |
||
436 | |||
437 | /** |
||
438 | * {@inheritDoc} |
||
439 | */ |
||
440 | public function getHorizontalResolution() |
||
444 | |||
445 | /** |
||
446 | * {@inheritDoc} |
||
447 | */ |
||
448 | public function withHorizontalResolution(HorizontalResolution $horizontalResolution) |
||
455 | |||
456 | /** |
||
457 | * {@inheritDoc} |
||
458 | */ |
||
459 | public function getVerticalResolution() |
||
463 | |||
464 | /** |
||
465 | * {@inheritDoc} |
||
466 | */ |
||
467 | public function withVerticalResolution(VerticalResolution $verticalResolution) |
||
474 | } |
||
475 |