📷 A modern, cross-platform, 2D Graphics library for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

63 lines
2.1 KiB

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<input type="file" id="files" />
<div id="output"></div>
<script src="jpg.js"></script>
<script>
(function (document) {
var input = document.getElementById("files"),
output = document.getElementById('output'),
fileData; // We need fileData to be visible to getBuffer.
// Eventhandler for file input.
function openfile(evt) {
var files = input.files;
// Pass the file to the blob, not the input[0].
fileData = new Blob([files[0]]);
// Pass getBuffer to promise.
var promise = new Promise(getBuffer);
// Wait for promise to be resolved, or log error.
promise.then(function (data) {
// Here you can pass the bytes to another function.
// output.innerHTML = data.toString();
// console.log(data);
console.log(new Date());
var jpeg = new JpegImage();
jpeg.parse(data);
var d = jpeg.getData(804, 1198, true);
// output.innerHTML = d.toString();
console.log(new Date());
console.log(d);
}).catch(function (err) {
console.log('Error: ', err);
});
}
/*
Create a function which will be passed to the promise
and resolve it when FileReader has finished loading the file.
*/
function getBuffer(resolve) {
var reader = new FileReader();
reader.readAsArrayBuffer(fileData);
reader.onload = function () {
var arrayBuffer = reader.result
var bytes = new Uint8Array(arrayBuffer);
resolve(bytes);
}
}
// Eventlistener for file input.
input.addEventListener('change', openfile, false);
}(document));
</script>
</body>
</html>