-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit.js
191 lines (135 loc) · 4.28 KB
/
init.js
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
sfomuseum.golang.wasm.fetch("wasm/supported_tags.wasm").then((rsp) => {
sfomuseum.golang.wasm.fetch("wasm/update_exif.wasm").then((rsp) => {
//
}).catch((err) => {
console.error("Failed to load update exif binary", err);
return;
});
enable();
}).catch((err) => {
console.error("Failed to load supported tags", err);
});
async function enable() {
var update_button = document.getElementById("update");
var add_button = document.getElementById("add");
update_button.innerText = "Update";
update_button.removeAttribute("disabled");
update_button.onclick = update;
add_button.innerText = "Add Property";
add_button.removeAttribute("disabled");
add_button.onclick = add_property;
}
async function add_property(){
var enc_supported = supported_tags();
if (! enc_supported) {
console.log("Failed to determine supported tags");
return false;
}
try {
supported = JSON.parse(enc_supported);
} catch(e){
console.log("Failed to unmarshal supported tags", e);
return false;
}
var props = document.getElementsByClassName("exif-property");
var count = props.length;
var idx = count + 1;
var id = "exif-property-" + idx;
var t_id = "exif-property-tag" + idx;
var v_id = "exif-property-value" + idx;
var group = document.createElement("div");
group.setAttribute("class", "form-group exif-property");
group.setAttribute("data-index", idx);
group.setAttribute("id", id);
var select_t = document.createElement("select");
select_t.setAttribute("id", t_id);
for (var i in supported) {
var tag = supported[i];
var option = document.createElement("option");
option.appendChild(document.createTextNode(tag));
select_t.appendChild(option);
}
var input_v = document.createElement("input");
input_v.setAttribute("type", "input");
input_v.setAttribute("placeholder", "A valid EXIF tag value");
input_v.setAttribute("id", v_id);
group.appendChild(select_t);
group.appendChild(input_v);
var form = document.getElementById("properties-form");
form.appendChild(group);
var update_button = document.getElementById("update");
update_button.style.display = "block";
return false;
}
async function update() {
var props = document.getElementsByClassName("exif-property");
var count = props.length;
if (count == 0){
return false;
}
var update = {};
var has_updates = false;
for (var i=0; i < count; i++){
var el = props[i];
var idx = el.getAttribute("data-index");
var t_id = "exif-property-tag" + idx;
var v_id = "exif-property-value" + idx;
var t_el = document.getElementById(t_id);
var v_el = document.getElementById(v_id);
var t = t_el.value;
var v = v_el.value;
if (t == ""){
continue;
}
if (v == ""){
continue;
}
update[t] = v;
has_updates = true;
}
if (! has_updates){
return false;
}
var enc_update;
try {
enc_update = JSON.stringify(update);
} catch(e){
console.log("Failed to marhsal update", update, e);
return false;
}
var img = document.getElementById("image");
var canvas = document.createElement("canvas");
canvas.width = img.width;
canvas.height = img.height;
var ctx = canvas.getContext("2d");
ctx.drawImage(img, 0, 0);
var b64_img = canvas.toDataURL("image/jpeg", 1.0);
update_exif(b64_img, enc_update).then(data => {
var blob = dataURLToBlob(data);
if (! blob){
return false;
}
saveAs(blob, "example.jpg");
}).catch(err => {
console.log("Failed to update EXIF data", err);
});
return false;
}
var dataURLToBlob = function(dataURL){
var BASE64_MARKER = ";base64,";
if (dataURL.indexOf(BASE64_MARKER) == -1){
var parts = dataURL.split(",");
var contentType = parts[0].split(":")[1];
var raw = decodeURIComponent(parts[1]);
return new Blob([raw], {type: contentType});
}
var parts = dataURL.split(BASE64_MARKER);
var contentType = parts[0].split(":")[1];
var raw = window.atob(parts[1]);
var rawLength = raw.length;
var uInt8Array = new Uint8Array(rawLength);
for (var i = 0; i < rawLength; ++i) {
uInt8Array[i] = raw.charCodeAt(i);
}
return new Blob([uInt8Array], {type: contentType});
}