summaryrefslogtreecommitdiff
path: root/ext/exif/tests/exif011.phpt
blob: 0dac68842b62fa2e6694f026174149c191fdbcb5 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
--TEST--
Check for exif_read_data, JPEG with IFD and EXIF data in Motorola 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(dirname(__FILE__).'/image011.jpg'));
?>
--EXPECTF--
array(28) {
  ["FileName"]=>
  string(12) "image011.jpg"
  ["FileDateTime"]=>
  int(%d)
  ["FileSize"]=>
  int(%d)
  ["FileType"]=>
  int(2)
  ["MimeType"]=>
  string(10) "image/jpeg"
  ["SectionsFound"]=>
  string(19) "ANY_TAG, IFD0, EXIF"
  ["COMPUTED"]=>
  array(9) {
    ["html"]=>
    string(20) "width="1" height="1""
    ["Height"]=>
    int(1)
    ["Width"]=>
    int(1)
    ["IsColor"]=>
    int(1)
    ["ByteOrderMotorola"]=>
    int(1)
    ["ApertureFNumber"]=>
    string(5) "f/8.0"
    ["Copyright"]=>
    string(24) "Eric Stewart, Hex Editor"
    ["Copyright.Photographer"]=>
    string(12) "Eric Stewart"
    ["Copyright.Editor"]=>
    string(10) "Hex Editor"
  }
  ["ImageDescription"]=>
  string(15) "My description."
  ["Make"]=>
  string(11) "OpenShutter"
  ["Model"]=>
  string(8) "OS 1.0.0"
  ["XResolution"]=>
  string(4) "72/1"
  ["YResolution"]=>
  string(4) "72/1"
  ["ResolutionUnit"]=>
  int(2)
  ["DateTime"]=>
  string(19) "2008:06:19 01:47:53"
  ["Artist"]=>
  string(12) "Eric Stewart"
  ["Copyright"]=>
  string(12) "Eric Stewart"
  ["Exif_IFD_Pointer"]=>
  int(246)
  ["ExposureTime"]=>
  string(5) "1/125"
  ["FNumber"]=>
  string(3) "8/1"
  ["ISOSpeedRatings"]=>
  int(80)
  ["DateTimeOriginal"]=>
  string(19) "2008:06:19 01:47:53"
  ["DateTimeDigitized"]=>
  string(19) "2008:06:19 01:47:53"
  ["MeteringMode"]=>
  int(5)
  ["LightSource"]=>
  int(4)
  ["Flash"]=>
  int(7)
  ["FocalLength"]=>
  string(4) "29/5"
  ["ExifImageWidth"]=>
  int(1)
  ["ExifImageLength"]=>
  int(1)
}
--CREDITS--
Eric Stewart <ericleestewart@gmail.com>