繁体   English   中英

如何将图像转换为位图

[英]how to convert image into bitmap

嗨,我有这段代码,如何将图像转换为位图? 我正在从画廊访问图像。

_GaleryButton.setOnClickListener(new View.OnClickListener()
 {

        public void onClick(View v) {
            // TODO Auto-generated method stub
            Intent intent=new Intent();

            intent.setAction(Intent.ACTION_PICK);

               intent.setData(android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI);

               startActivity(intent);
        }
    });

}
    protected void onGActivityResult(int GrequestCode, int GresultCode, Intent Gdata){

        super.onActivityResult(GrequestCode,GresultCode,Gdata);

        Uri uriimg = Gdata.getData();


    }

这是一个完整的示例,可以实现此目的:

从图库中选取图片

谢谢。

如果要将图像保存到SD卡,请使用此代码

//Get the root of your sd card
File sdcard = Environment.getExternalStorageDirectory();

//Folder from sd card
File storagePath = new File(sdcard.getAbsolutePath() + "/fb_image");

//Decode the file from the folder to bitmap
Bitmap bmp = BitmapFactory.decodeFile(storagePath + "/" + file_name+ ".jpg");

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM