summaryrefslogtreecommitdiff
path: root/ext/exif/tests/exif024.phpt
blob: f1e9c66c54980026dbedb82bcffbb2f408310107 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
--TEST--
Check for exif_read_data, JPEG with IFD0, EXIF, INTEROP data in Intel byte-order.
--SKIPIF--
<?php if (!extension_loaded('exif')) print 'skip exif extension not available';?>
--INI--
output_handler=
zlib.output_compression=0
--FILE--
<?php
var_dump(exif_read_data(__DIR__.'/image024.jpg'));
?>
--EXPECTF--
array(14) {
  ["FileName"]=>
  string(12) "image024.jpg"
  ["FileDateTime"]=>
  int(%d)
  ["FileSize"]=>
  int(%d)
  ["FileType"]=>
  int(2)
  ["MimeType"]=>
  string(10) "image/jpeg"
  ["SectionsFound"]=>
  string(28) "ANY_TAG, IFD0, EXIF, INTEROP"
  ["COMPUTED"]=>
  array(5) {
    ["html"]=>
    string(20) "width="1" height="1""
    ["Height"]=>
    int(1)
    ["Width"]=>
    int(1)
    ["IsColor"]=>
    int(1)
    ["ByteOrderMotorola"]=>
    int(0)
  }
  ["Exif_IFD_Pointer"]=>
  int(26)
  ["InteroperabilityOffset"]=>
  int(44)
  ["InterOperabilityIndex"]=>
  string(3) "R98"
  ["InterOperabilityVersion"]=>
  string(4) "0100"
  ["RelatedFileFormat"]=>
  string(12) "image024.jpg"
  ["RelatedImageWidth"]=>
  int(1)
  ["RelatedImageHeight"]=>
  int(1)
}
--CREDITS--
Eric Stewart <ericleestewart@gmail.com>