forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.html
102 lines (102 loc) · 2.39 KB
/
info.html
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
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<!--
* Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this
* source code is governed by a BSD-style license that can be found in the
* LICENSE file.
-->
<html>
<head>
<script src="imageinfo/binaryajax.js"></script>
<script src="imageinfo/imageinfo.js" ></script>
<script src="imageinfo/exif.js" ></script>
<link href="info.css" rel="stylesheet" type="text/css"></link>
<script src="info.js"></script>
</head>
<body>
<div id="loader">
Loading... <img src="loader.gif" />
</div>
<div id="output">
<div id="info">
<h1>Image Information</h1>
<code id="url"></code>
<canvas id="thumbnail"></canvas>
<table>
<tr>
<th>Format</th>
<td>format</td>
</tr>
<tr>
<th>Version</th>
<td>version</td>
</tr>
<tr>
<th>Width</th>
<td>width</td>
</tr>
<tr>
<th>Height</th>
<td>height</td>
</tr>
<tr>
<th>Mime Type</th>
<td>mimeType</td>
</tr>
<tr>
<th>Size (Bytes)</th>
<td>byteSize</td>
</tr>
</table>
</div>
<div id="exif">
<h2>EXIF Information</h2>
<table>
<tr>
<th>Date</th>
<td>DateTime</td>
</tr>
<tr>
<th>Aperture</th>
<td>ApertureValue</td>
</tr>
<tr>
<th>Exposure</th>
<td>ExposureTime</td>
</tr>
<tr>
<th>Shutter Speed</th>
<td>ShutterSpeedValue</td>
</tr>
<tr>
<th>ISO</th>
<td>ISOSpeedRatings</td>
</tr>
<tr>
<th>Camera Make</th>
<td>Make</td>
</tr>
<tr>
<th>Camera Model</th>
<td>Model</td>
</tr>
<tr>
<th>Software</th>
<td>Software</td>
</tr>
<tr>
<th>XResolution</th>
<td>XResolution</td>
</tr>
<tr>
<th>YResolution</th>
<td>YResolution</td>
</tr>
<tr>
<th>Flash</th>
<td>Flash</td>
</tr>
</table>
</div>
</div>
</body>
</html>