Android,获取图库图像并以整数存储

时间:2013-03-13 12:33:39

标签: android image integer gallery

我正在从图库中提取图像,我想存储以整数形式选择的图像。 我尝试了一切,但没有什么能帮助我, 我的代码是

private void getGalleyImage() {
    Intent fileChooserIntent = new Intent();
    fileChooserIntent.addCategory(Intent.CATEGORY_OPENABLE);
    fileChooserIntent.setType("image/*");
    fileChooserIntent.setAction(Intent.ACTION_GET_CONTENT);
    startActivityForResult(
            Intent.createChooser(fileChooserIntent, "Select Picture"), 1);

}

我正在获取图像,但我无法将该图像存储为整数,我尝试过uri和bitmap然后使用bytearray, 我想将它们存储在整数中。 提前谢谢。

0 个答案:

没有答案