我正在尝试从我的iPhone上传图像并多次使用该图像绘制到画布然后最终保存图像(尽管我还没有实现保存部分)。我正在使用这里的示例:http://code.hootsuite.com/html5/我可以将其用于绘制图像,但是,如果我尝试修改图像,则会得到交叉原点错误。图像上传和编辑适用于Chrome上的Android设备(但在Safari上无法与iPhone配合使用)。有没有人遇到过类似的问题,或者可以为此提供一些解决方案?
if (window.File && window.FileReader && window.FormData) {
var inputField = document.getElementById('file');
inputField.addEventListener('change', function(e){
var file = e.target.files[0];
if (file) {
if (/^image\//i.test(file.type)) {
readFile(file);
} else {
alert('Not a valid image!');
}
}
})
} else {
alert("FILE UPLOAD NOT SUPPORTED");
}
function readFile(file) {
var reader = new FileReader();
reader.onloadend = function () {
console.log('reader.onloadend');
processFile(reader.result, file.type);
};
reader.onerror = function () {
alert('There was an error reading the file!');
};
reader.readAsDataURL(file);
}
function processFile(dataURL, fileType) {
var maxWidth = 600;
var maxHeight = 600;
var image = new Image();
image.src = dataURL;
image.onload = function () {
var width = image.width;
var height = image.height;
var shouldResize = (width > maxWidth) || (height > maxHeight);
main(image); // this passes image to function that draws image to canvas and crops
}
答案 0 :(得分:1)
这似乎是iOS中基于webkit的浏览器的错误/限制。
至于解决方法:您可以尝试将图像作为ArrayBuffer(readAsArrayBuffer()
)上传,并创建一个Blob和一个object-url来设置为源。
有关详细信息,请参阅this answer。