-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 1.26 KB
/
index.html
File metadata and controls
35 lines (33 loc) · 1.26 KB
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
<!DOCTYPE html>
<html>
<head>
<title>JPEG EXIF LIB JS</title>
<link href="examples/page.css" rel="stylesheet" />
<link rel='shortcut icon' type='image/x-icon' href='examples/favicon.ico' />
</head>
<body style="margin:0 auto;text-align:center;">
<h1>Javascript Library to view and edit EXIF from JPEG images</h1>
<p>
This library is a structured javascript project to analyze the EXIF part of simple JPEG images.<br>
You can read the binary file and analyze the content.<br>
Or, you can edit some simple tags and store the new jpeg image.
</p>
<h2>Tool Examples</h2>
<table style="margin:0 auto";>
<tr>
<th><h3>EXIF Binary reader</h3></th>
<th><h3></h3>Canvas EXIF</h3></th>
</tr>
<tr>
<td><a href="examples/binaryview.html" /><img src="images/exif_binary.png" style="width:20vw"></a></td>
<td><a href="examples/extendedcanvas.html" /><img src="images/exif_add.png" style="width:20vw"></a></td>
</tr>
<tr>
<td>Read the binary file and get the position of each attribute of the JPEG image.</td>
<td>Add some info to your canvas generated JPEG</td>
</tr>
</table>
<hr>
Source of this project: <a href="https://github.com/Adrianotiger/jpeg-exif-lib-js">https://github.com/Adrianotiger/jpeg-exif-lib-js</a>
</body>
</html>