Utilizzo di html2canvas Come posso salvare una schermata su un oggetto? Ho esplorato le demo, e vedere che la funzione di generare lo screenshot viene generato come segue:Come caricare uno screenshot usando html2canvas?
$(window).ready(function() {
('body').html2canvas();
});
Quello che ho provato a fare è
$(window).ready(function() {
canvasRecord = $('body').html2canvas();
dataURL = canvasRecord.toDataURL("image/png");
dataURL = dataURL.replace(/^data:image\/(png|jpg);base64,/, "");
upload(dataURL);
});
E, ho poi passarlo a la mia funzione upload()
. Il problema che sto avendo, è che non riesco a capire dove lo screenshot è stato fatto nella libreria html2canvas()
o quale funzione lo restituisce. Ho provato a convertire l'oggetto canvas usando la risposta this da SO (anche se non sono sicuro di doverlo fare).
ho solo chiesto un question su come caricare un file imgur, e le risposte là (in particolare @ bebraw di) mi aiuta a capire che cosa devo fare.
La funzione upload()
da l'aiuto esempio api Imgur:
function upload(file) {
// file is from a <input> tag or from Drag'n Drop
// Is the file an image?
if (!file || !file.type.match(/image.*/)) return;
// It is!
// Let's build a FormData object
var fd = new FormData();
fd.append("image", file); // Append the file
fd.append("key", "mykey"); // Get your own key: http://api.imgur.com/
// Create the XHR (Cross-Domain XHR FTW!!!)
var xhr = new XMLHttpRequest();
xhr.open("POST", "http://api.imgur.com/2/upload.json"); // Boooom!
xhr.onload = function() {
// Big win!
// The URL of the image is:
JSON.parse(xhr.responseText).upload.links.imgur_page;
}
// Ok, I don't handle the errors. An exercice for the reader.
// And now, we send the formdata
xhr.send(fd);
}
Cosa c'è di funzione 'upload'? Il 'dataURL' passato è una semplice stringa' base64' senza tipo MIME. È destinato? –
@RobW Ho appena aggiunto la funzione 'upload()' - Non capisco cosa faccia la funzione 'dataURL' (ancora); L'ho aggiunto come è stato usato nell'esempio per convertire un 'canvas' in un'immagine (per quanto ne so io). – djq
Il metodo corretto è 'var canvasRecord = new html2canvas (document.body) .canvas;' Combina il risultato con [questa risposta] (http://stackoverflow.com/a/5303242/938089?sending-images-from-canvas ajax-e-php-files -Elementi-con-). –