OCR Scan Design (fast) fertig und funktioniert

This commit is contained in:
LukasNowy
2019-01-29 16:55:05 +01:00
parent 65ed6c932c
commit ea512efee4
4 changed files with 103 additions and 16 deletions

View File

@ -4,9 +4,11 @@ function readURL(input) {
reader.onload = function (e) {
$('#blah')
.attr('src', e.target.result).attr('width', "650px")
.attr('src', e.target.result).css('height', "80vmin")
};
$(".btn-analyze").removeClass("disabled");
reader.readAsDataURL(input.files[0]);
}
}