我的文件浏览器出现问题。
当它到达任何目录时:获取文件夹列表以列出地图,并使用onBindCustomView为每个列表项设置图标。 如果该文件格式为图像,则显示图像预览而不是显示图像图标。
但问题是,一个或少于10个图像文件是可以的。但是当图像文件数量达到50以上时,它就会非常困难。
我认为这种滞后问题是由图像预览引起的。因为它没有调整大小,所以我添加了代码来调整图像预览的大小,从任何x any到100x100。
但还有另一个问题。
bitmap.createBitmap(bitmap, 0, 0, 100, 100)
此剪切图像并使其变小。这只会调整图像大小。结果是图像的一小部分。
是否有方法调整图像大小并使图像保持原始状态?
答案 0 :(得分:0)
你可以使用canvas:
在你看来。
<script>
$('#files')
.bind('change', function(ev) {
message_loading("none");
ev.preventDefault();
ev.stopPropagation();
uploadFiles(this);
message_loading("display");
})
</script>
在你的剧本中
function uploadFiles(target) {
var content = target.files;
var img = reduceImgSize(content[0], content[0]["name"]);
}
function reduceImgSize(f, name){
var reader = new FileReader();
reader.onload = function (readerEvent) {
var image = new Image();
image.onload = function (imageEvent) {
var canvas = document.createElement('canvas'),
max_size = image.width/1.1,
width = image.width,
height = image.height;
if (width > height) {
if (width > max_size) {
height *= max_size / width;
width = max_size;
}
} else {
if (height > max_size) {
width *= max_size / height;
height = max_size;
}
}
canvas.width = width; // write your width
canvas.height = height; // write your height
canvas.getContext('2d').drawImage(image, 0, 0, width, height);
var dataUrl = canvas.toDataURL('image/jpeg');
var resizedImage = dataURLToBlob(dataUrl);
var imageFile = new File([resizedImage], name, {type : "image/jpeg"});
return imageFile;
}
image.src = readerEvent.target.result;
}
reader.readAsDataURL(f);
}
我希望它有所帮助