我正在嘗試使用Javascript
上傳png
到imgur。我直接使用Imgur API example的代碼,但我不認爲我正在傳遞png文件,因爲我收到一條錯誤消息,說file.type is undefined
。我認爲該文件是可以的,因爲我已經嘗試了幾個不同的PNG。我的代碼如下:使用javascript上傳PNG到imgur
<html>
<head>
<script type="text/javascript">
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);
}
</script>
</head>
<body>
<button type="button" onclick="upload('test.png')">upload to imgur</button>
</body>
</html>
的png
文件test.png
存儲在同一目錄作爲我的HTML文件。
感謝您的建議的圖像數據。爲了將圖像添加到畫布上,是否是圖像'id'?我假設我不能使用文件名來引用它,基於@ skimberk1的評論。 – djq 2012-02-12 15:53:38
使用文件名無法引用圖像。您需要將其加載到img元素,然後使用drawImage將其內容加載到畫布。在img的onload處理程序中完成後面的部分很重要。否則它將無法工作。 – 2012-02-12 16:09:27
感謝bebraw,這有助於我理解流程。我正在嘗試http://html2canvas.hertzen.com/;它看起來會執行這些步驟的一部分。 – djq 2012-02-12 16:34:53