IOS6已经发布,我一直在测试照片上传。
它运行良好,但对于 3G 以上的较大图像,它如预期的那样慢。
感谢 File API 和 Canvas,可以使用 JavaScript 调整图像大小。我希望如果我在尝试上传图像之前调整图像大小,它们会上传得更快 - 有助于快速的用户体验。随着智能手机处理器的改进速度比网络速度快得多,我相信这个解决方案是赢家。
Nicolas 为图像大小调整提供了出色的解决方案:
但是,我很难用 jQuery 的 Ajax 来实现它。感谢任何建议或帮助,因为此代码可能对 IOS6 后的移动 Web 应用程序开发非常有用。
var fileType = file.type,
reader = new FileReader();
reader.onloadend = function () {
var image = new Image();
image.src = reader.result;
image.onload = function () {
//Detect image size
var maxWidth = 960,
maxHeight = 960,
imageWidth = image.width,
imageHeight = image.height;
if (imageWidth > imageHeight) {
if (imageWidth > maxWidth) {
imageHeight *= maxWidth / imageWidth;
imageWidth = maxWidth;
}
} else {
if (imageHeight > maxHeight) {
imageWidth *= maxHeight / imageHeight;
imageHeight = maxHeight;
}
}
//Create canvas with new image
var canvas = document.createElement('canvas');
canvas.width = imageWidth;
canvas.height = imageHeight;
var ctx = canvas.getContext("2d");
ctx.drawImage(this, 0, 0, imageWidth, imageHeight);
// The resized file ready for upload
var finalFile = canvas.toDataURL(fileType);
if (formdata) {
formdata.append("images[]", finalFile);
$.ajax({
url: "upload.php",
type: "POST",
data: formdata,
dataType: 'json',
processData: false,
contentType: false,
success: function (res) {
//successful image upload
}
});
}
}
}
reader.readAsDataURL(file);