我想将图像上传到服务器而不进行压缩,因为我在另一个函数中压缩图像而不是将图像发送到 uploadtoserver 函数。
这是我的代码将图像上传到服务器,但我不明白如何将图像上传到服务器而不压缩它。
public String uploadtoserver(String imgPathm){
//int flag=0;
try{
Bitmap bm = BitmapFactory.decodeFile(imgPathm);
ByteArrayOutputStream bao = new ByteArrayOutputStream();
byte[] ba = bao.toByteArray();
String ba1 = Base64.encodeToString(ba, 0);
//ba1 = Base64.encodeBytes(ba);
return ba1;
}
catch (Exception e)
{
Toast.makeText(this, e.getMessage(), Toast.LENGTH_SHORT).show();
return null;
}
}
我只想知道上面的代码是否可以将图片上传到服务器。谢谢