有没有最好的方法来调整大小并将文件保存到流星中的s3。
我虽然使用cfs
个软件包,但是他们在服务器上加载了太多负载。
使用slingshot
直接将图像上传到s3我很好。
但弹弓只接受文件对象作为输入,它不会采取流来存储文件。
是否有任何选项可以在客户端调整图像大小并将其传递给slingshot
包
包裹:https://github.com/CulturalMe/meteor-slingshot 问题:https://github.com/CulturalMe/meteor-slingshot/issues/36
答案 0 :(得分:4)
是的,可以使用clientside-image-manipulation,这是我未经测试的文档解释:
Template.upload.events({
'change #image-upload': function(event, target) {
var uploader = new Slingshot.Upload("myFileUploads");
var file = event.target.files[0];
var img = null;
processImage(file, 300, 300, function(data){
uploader.send(data, function (error, downloadUrl) {
if(error)
throw new Meteor.Error('upload', error);
Meteor.users.update(Meteor.userId(), {$push: {"profile.files": downloadUrl}});
});
});
}
});
进行调查
答案 1 :(得分:4)
我发现以下工作是为了将Clientside Image Manipulation与Slingshot集成(异步代码与ES6承诺):
var uploader;
function b64ToBlob(b64Data, contentType, sliceSize) {
var byteNumbers, i, slice;
var offset = 0;
var byteCharacters = atob(b64Data);
var byteArrays = [];
sliceSize = sliceSize || 512;
byteArrays = [];
while (offset < byteCharacters.length) {
slice = byteCharacters.slice(offset, offset + sliceSize);
byteNumbers = [];
for (i = 0; i < slice.length; ++i) {
byteNumbers.push(slice.charCodeAt(i));
}
byteArrays.push(new Uint8Array(byteNumbers));
offset += sliceSize;
}
return new Blob(byteArrays, {type: contentType});
}
uploader = new Slingshot.Upload("pictures");
new Promise(function (resolve) {
processImage(file, 300, 300, resolve);
}).then(function (dataUri) {
var match = /^data:([^;]+);base64,(.+)$/.exec(dataUri);
return [file.name, match[1], match[2]];
}).then(function (params) {
var name = params[0];
var type = params[1];
var b64 = params[2];
return new Promise(function (resolve, reject) {
var blob = b64ToBlob(b64, type);
blob.name = name;
uploader.send(blob, function (error, downloadUrl) {
if (error != null) {
reject(error.message);
} else {
resolve(downloadUrl);
}
});
});
});
从Base64转换为blob是从https://stackoverflow.com/a/16245768/1238764借来的。
答案 2 :(得分:0)
有很多图像处理插件。我使用的是:cropper
这是一个基于jquery的插件,基本上可以做你想要的东西+更多。操作后,您可以将图像转换为画布,使用dataToUrl()方法,您可以将新操纵图像的数据传递给您选择的任何数据源。