如何通过在Android中选择图片来上传SD卡中的图片

发布于 2024-11-09 11:57:19 字数 762 浏览 0 评论 0原文

在我的应用程序中,我尝试将图像发送到存储在 SD 卡中的服务器。当我单击按钮时,它会打开 SD 卡并在网格视图中显示图像。从那里我想上传我正在接触的图像。我知道将图像上传到服务器,但我不知道从 SD 卡中选择图像,请帮助我......

以下是我的代码......

public void library()
{
   Intent myIntent = new Intent();
   myIntent.setType("image/*");
   myIntent.setAction(Intent.ACTION_GET_CONTENT);
   startActivityForResult(Intent.createChooser(myIntent,"Select Picture"), 101);
}
public void onActivityResult(int requestCode, int resultCode, Intent myIntent)
{
    Intent data = null;
    if (requestCode == 101 && data != null) 
    {
    Uri selctedImageUri =data.getData(); 
    }
    else 
    {
        Toast toast = Toast.makeText(this, "No Image is selected.", Toast.LENGTH_LONG);
    toast.show();
    }
 }

如何继续请帮助我......

in my app i am trying to send images to a server that are stored in sd card. When i click a button it opens the sd card and shows the image in a grid view. From that the i want to upload the image which i am touching on it. I know to upload an image to a server, but i dont know to select an image from the sd card please help me.....

Following is my code....

public void library()
{
   Intent myIntent = new Intent();
   myIntent.setType("image/*");
   myIntent.setAction(Intent.ACTION_GET_CONTENT);
   startActivityForResult(Intent.createChooser(myIntent,"Select Picture"), 101);
}
public void onActivityResult(int requestCode, int resultCode, Intent myIntent)
{
    Intent data = null;
    if (requestCode == 101 && data != null) 
    {
    Uri selctedImageUri =data.getData(); 
    }
    else 
    {
        Toast toast = Toast.makeText(this, "No Image is selected.", Toast.LENGTH_LONG);
    toast.show();
    }
 }

how to proceed please help me.....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

染柒℉ 2024-11-16 11:57:19

这是获取图库图像的意图:

    Intent intent = new Intent(Intent.ACTION_GET_CONTENT, null);
    intent.setType("image/*");
    intent.putExtra("return-data", true);
    startActivityForResult(intent, 1);

然后这段代码是在图像视图中设置从图库中选择的图像:
使用 On ActivityResult 来实现:

    @Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    switch (requestCode) {
        case 1:
            if(requestCode == 1 && data != null && data.getData() != null){
                Uri _uri = data.getData();

                if (_uri != null) {
                    //User had pick an image.
                    Cursor cursor = getContentResolver().query(_uri, new String[] { android.provider.MediaStore.Images.ImageColumns.DATA }, null, null, null);
                    cursor.moveToFirst();

                    //Link to the image
                    final String imageFilePath = cursor.getString(0);
                    Log.v("imageFilePath", imageFilePath);
                    File photos= new File(imageFilePath);
                    Bitmap b = decodeFile(photos);
                    b = Bitmap.createScaledBitmap(b,150, 150, true);
                    ImageView imageView = (ImageView) findViewById(R.id.select_image);
                    imageView.setImageBitmap(b);
                    cursor.close();
                }
            }
            super.onActivityResult(requestCode, resultCode, data);
        }
    }

This Method for Reducing the Size of Image;

 private Bitmap decodeFile(File f){
        try {
            //decode image size
            BitmapFactory.Options o = new BitmapFactory.Options();
            o.inJustDecodeBounds = true;
            BitmapFactory.decodeStream(new FileInputStream(f),null,o);

            //Find the correct scale value. It should be the power of 2.
            final int REQUIRED_SIZE=70;
            int width_tmp=o.outWidth, height_tmp=o.outHeight;
            int scale=1;
            while(true){
                if(width_tmp/2<REQUIRED_SIZE || height_tmp/2<REQUIRED_SIZE)
                    break;
                width_tmp/=2;
                height_tmp/=2;
                scale++;
            }

            //decode with inSampleSize
            BitmapFactory.Options o2 = new BitmapFactory.Options();
            o2.inSampleSize=scale;
            return BitmapFactory.decodeStream(new FileInputStream(f), null, o2);
        } catch (FileNotFoundException e) {}
        return null;
    }

在这些方法中,如果您传递包含图像的文件,它将调整图像大小并返回 BITMAP..

This is the Intent for getting Gallery images :

    Intent intent = new Intent(Intent.ACTION_GET_CONTENT, null);
    intent.setType("image/*");
    intent.putExtra("return-data", true);
    startActivityForResult(intent, 1);

Then this code is to set the image selected from the Gallery in the Image View :
Use On ActivityResult fro this :

    @Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    switch (requestCode) {
        case 1:
            if(requestCode == 1 && data != null && data.getData() != null){
                Uri _uri = data.getData();

                if (_uri != null) {
                    //User had pick an image.
                    Cursor cursor = getContentResolver().query(_uri, new String[] { android.provider.MediaStore.Images.ImageColumns.DATA }, null, null, null);
                    cursor.moveToFirst();

                    //Link to the image
                    final String imageFilePath = cursor.getString(0);
                    Log.v("imageFilePath", imageFilePath);
                    File photos= new File(imageFilePath);
                    Bitmap b = decodeFile(photos);
                    b = Bitmap.createScaledBitmap(b,150, 150, true);
                    ImageView imageView = (ImageView) findViewById(R.id.select_image);
                    imageView.setImageBitmap(b);
                    cursor.close();
                }
            }
            super.onActivityResult(requestCode, resultCode, data);
        }
    }

This Method for Reducing the Size of Image ;

 private Bitmap decodeFile(File f){
        try {
            //decode image size
            BitmapFactory.Options o = new BitmapFactory.Options();
            o.inJustDecodeBounds = true;
            BitmapFactory.decodeStream(new FileInputStream(f),null,o);

            //Find the correct scale value. It should be the power of 2.
            final int REQUIRED_SIZE=70;
            int width_tmp=o.outWidth, height_tmp=o.outHeight;
            int scale=1;
            while(true){
                if(width_tmp/2<REQUIRED_SIZE || height_tmp/2<REQUIRED_SIZE)
                    break;
                width_tmp/=2;
                height_tmp/=2;
                scale++;
            }

            //decode with inSampleSize
            BitmapFactory.Options o2 = new BitmapFactory.Options();
            o2.inSampleSize=scale;
            return BitmapFactory.decodeStream(new FileInputStream(f), null, o2);
        } catch (FileNotFoundException e) {}
        return null;
    }

In these method if you Pass a File that contains image it will Resize the image and returns BITMAP..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文