通过fileUri检索jpg图像

时间:2013-01-24 08:27:21

标签: android android-layout android-intent android-emulator android-widget

我需要一些帮助。我想知道是否有办法从fileUri中检索jpg照片对象。

我基本上在使用API​​,其中所需的参数是照片对象(jpg)。 我不需要以缩略图等方式显示或显示任何内容。

只需将jpg文件传递给API即可。

一些示例代码会有很大帮助!

请帮忙:) 谢谢!

2 个答案:

答案 0 :(得分:0)

不了解您的API但是如果您可以传递位图,那么您可以使用它 -

public static Bitmap getImagefromURL(String url) {
    HttpURLConnection connection  = (HttpURLConnection) url.openConnection();
    InputStream is = connection.getInputStream();
    Bitmap img = BitmapFactory.decodeStream(is);  
    return img;
 }

然后你可以将位图转换为jpg ...    bmp to jp

答案 1 :(得分:0)

以位图格式检索图像 将位图转换为字节数组 通过编码将字节数组转换为base64字符串。

将字符串传递给api。服务器需要将其解码回图像文件。