gpt4 book ai didi

javascript - 使用云代码解析服务器保存 jpg 文件

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:10:49 27 4
gpt4 key购买 nike

我正在尝试在解析服务器上使用云代码保存 jpg 文件 ...

在 Android 上我可以用这种方式来做

Bitmap bitmap = ((BitmapDrawable) myImageView.getDrawable()).getBitmap();

ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream);
byte [] byteArrayPhotoUpdate = stream.toByteArray();
final ParseFile pictureFileParse = new ParseFile( newUserInfo.getObjectId() + ".JPEG",byteArrayPhotoUpdate);

newUserInfo.put("profile_picture",pictureFileParse);
newUserInfo.saveInBackground();

但我不知道如何在云代码中执行此操作。我这样调用我的云代码函数

HashMap<String, String> params = new HashMap();

ParseCloud.callFunctionInBackground("myCloudFuncion", params, new FunctionCallback<String>() {
@Override
public void done(String aFloat, ParseException e) {

}
});

但我不知道如何在 HashMap 参数中传递位图。我已经在互联网上搜索过,但我发现没有任何帮助,指向有用的东西的链接已经过时了,从旧解析的时代开始......

parse docs我找到了这个

    var base64 = "V29ya2luZyBhdCBQYXJzZSBpcyBncmVhdCE=";
var file = new Parse.File("myfile.txt", { base64: base64 });

这让我很困惑,因为我不知道 2 个“base64”参数是指变量还是 base64 类型

我应该将我的位图转换为 base64 并将其作为参数发送到云代码吗?

如果您经历过这些并且知道如何做,我将很高兴知道您的解决方案。谢谢!

最佳答案

您需要像这样将图像位图转换为 base64:

            Bitmap bitmap = ((BitmapDrawable) img.getDrawable()).getBitmap();

ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream);
byte [] byteArrayPhotoUpdate = stream.toByteArray();
String encodedfile = new String(Base64.encodeBase64(byteArrayPhotoUpdate), "UTF-8");

然后,在参数中发送你的字符串 base64,就像这样:

 HashMap<String, String> params = new HashMap();
params.put("fileInfo",encodedfile);
ParseCloud.callFunctionInBackground("saveParseUserInfo", params, new FunctionCallback<String>() {
@Override
public void done(String aFloat, ParseException e) {

Log.i("ewaeaweaweaweawe", "done: " + aFloat);
}
});

现在在您的云代码中,使用它:

Parse.Cloud.define("saveParseUserInfo", function(request, response) {
var userId = request.user.id;
var base64 = request.params.fileInfo;
var userClass = Parse.Object.extend("User");
//create a user object to set ACL
var userObject = userClass.createWithoutData(userId);

//create new ParseObject
var userPublicClass = Parse.Object.extend("userPublic");
var userPublic = new userPublicClass();
var aclAction = new Parse.ACL(userObject);
aclAction.setPublicReadAccess(true);
userPublic.setACL(aclAction);
userPublic.set("name", "name random");
userPublic.set("username", "username_random");
//Now create a Parse File object
var file = new Parse.File("photo.jpeg", { base64: base64 });
//set file object in a colum profile_picture
userPublic.set("profile_picture",file);
//save
userPublic.save(null, { useMasterKey: true,
success: function(actionSuccess) {

response.success("saved!!");
},
error: function(action, error) {
// Execute any logic that should take place if the save fails.
// error is a Parse.Error with an error code and message.
response.error(error.message);
}
});






});

希望对你有帮助

关于javascript - 使用云代码解析服务器保存 jpg 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52341276/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com