Not how to do this, and consulted, but did not reach if I can help.
try something like this:
var reader = new FileReader();
reader.onload = function(event) {
var dataUri = event.target.result,
context = document.getElementById("mycanvas").getContext("2d"),
img = new Image();
img.onload = function() {
context.drawImage(img, 100, 100);
};
img.src = 'url_imagen';
};
reader.onerror = function(event) {
console.error("File could not be read! Code " + event.target.error.code);
};
reader.readAsDataURL(file);
When all the contributions are realized, but try, and if it works.
Point run to desert, poker images that have jpg my permission cause the following error:
TIFFReadDirectory: warning, unknown field with tag 347 (0x15b). tiff_min.js (línea 103) 1.tiff: JPEG compression support not configured. tiff_min.js (línea 103) 1.tiff: Sorry, the requested compression method is not configured. tiff_min.js (línea 103) uncaught exception: [object Object]
Probe Code:
Tiff.initialize({TOTAL_MEMORY: 19777216 * 10});
var xhr = new XMLHttpRequest();
xhr.responseType = 'arraybuffer';
xhr.open('GET', url);
xhr.onload = function (e) {
var tiff = new Tiff({buffer: xhr.response,height:450});
var canvas = tiff.toCanvas();
div.html(canvas);
msn('Imagen cargada', "Imagen cargada con exito.");
};
xhr.send();
source
share