एंड्रॉइड की अंतर्निहित गैलरी एप्लिकेशन से प्रोग्राम से छवि प्राप्त करें / चुनें


271

मैं अपने ऐप्लिकेशन के अंदर से गैलरी में अंतर्निहित एप्लिकेशन में एक छवि / चित्र खोलने का प्रयास कर रहा हूं।

मेरे पास चित्र का एक यूआरआई है (चित्र एसडी कार्ड पर स्थित है)।

क्या तुम्हारे पास कोई सुझाव है?


मैंने यह सुनिश्चित करने के लिए कि आपने परिणामों को सही तरीके से प्राप्त किया है, और अधिक परीक्षण कोड प्रदान करने के लिए मैंने अपना उत्तर अपडेट कर दिया है।
एंथनी फोर्लोनी

मेरे उत्तर को देखें, यह hcpl के कोड का एक अद्यतन है और यह एस्ट्रो फ़ाइल प्रबंधक और ओआई फ़ाइल प्रबंधक के लिए भी काम करता है।
पागल

15
किसी को सवाल अपडेट करना चाहिए, "एंड्रॉइड से छवि प्राप्त करें / चुनें ..."। वर्तमान प्रश्न की व्याख्या है कि मेरी छवि है और मैं इसे डिफ़ॉल्ट गैलरी ऐप के माध्यम से दिखाना चाहता हूं।
विकास

@ वीकास, लगता है कि आप सही हैं। मुझे याद नहीं है कि वास्तव में मैंने एक साल से अधिक समय पहले क्या पूरा करने की कोशिश की है और क्यों सभी उत्तर (एक समाधान के रूप में जिसे मैंने चुना है) वास्तव में एक अलग सवाल का जवाब देता है ...
माइकल केसलर

वास्तव में, मुझे नहीं पता कि क्या सवाल को पूरी तरह से बदलना सही है। ऐसे 36 लोग हैं जिन्होंने इस सवाल को अपने पसंदीदा में जोड़ा है ...
माइकल केसलर

जवाबों:


351

यह एक संपूर्ण समाधान है। मैंने अभी इस उदाहरण कोड को @mad द्वारा नीचे दिए गए उत्तर में दी गई जानकारी से अपडेट किया है। इसके अलावा नीचे दिए गए समाधान की जाँच करें @ कबोब से यह समझाते हुए कि कैसे पिकासा छवियों से निपटने के लिए।

अपडेट करें

मैंने अभी-अभी अपने मूल उत्तर की समीक्षा की है और एक सरल एंड्रॉइड स्टूडियो प्रोजेक्ट बनाया है जिसे आप जीथब से चेकआउट कर सकते हैं और सीधे अपने सिस्टम पर आयात कर सकते हैं।

https://github.com/hanscappelle/SO-2169649

(ध्यान दें कि एकाधिक फ़ाइल चयन को अभी भी काम करने की आवश्यकता है)

एकल चित्र चयन

उपयोगकर्ता पागल के लिए फ़ाइल खोजकर्ता से छवियों के लिए समर्थन के साथ।

public class BrowsePictureActivity extends Activity {

    // this is the action code we use in our intent, 
    // this way we know we're looking at the response from our own action
    private static final int SELECT_PICTURE = 1;

    private String selectedImagePath;

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        findViewById(R.id.Button01)
                .setOnClickListener(new OnClickListener() {

                    public void onClick(View arg0) {

                        // in onCreate or any event where your want the user to
                        // select a file
                        Intent intent = new Intent();
                        intent.setType("image/*");
                        intent.setAction(Intent.ACTION_GET_CONTENT);
                        startActivityForResult(Intent.createChooser(intent,
                                "Select Picture"), SELECT_PICTURE);
                    }
                });
    }

    public void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (resultCode == RESULT_OK) {
            if (requestCode == SELECT_PICTURE) {
                Uri selectedImageUri = data.getData();
                selectedImagePath = getPath(selectedImageUri);
            }
        }
    }

    /**
     * helper to retrieve the path of an image URI
     */
    public String getPath(Uri uri) {
            // just some safety built in 
            if( uri == null ) {
                // TODO perform some logging or show user feedback
                return null;
            }
            // try to retrieve the image from the media store first
            // this will only work for images selected from gallery
            String[] projection = { MediaStore.Images.Media.DATA };
            Cursor cursor = managedQuery(uri, projection, null, null, null);
            if( cursor != null ){
                int column_index = cursor
                .getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
                cursor.moveToFirst();
                String path = cursor.getString(column_index);
                cursor.close();
                return path;
            }
            // this is our fallback here
            return uri.getPath();
    }

}

एकाधिक चित्रों का चयन

चूंकि किसी ने टिप्पणी में उस जानकारी का अनुरोध किया है और जानकारी एकत्र करना बेहतर है।

EXTRA_ALLOW_MULTIPLEइरादे पर एक अतिरिक्त पैरामीटर सेट करें :

intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);

और उस पैरामीटर के लिए रिजल्ट हैंडलिंग चेक:

if (Intent.ACTION_SEND_MULTIPLE.equals(data.getAction()))
        && Intent.hasExtra(Intent.EXTRA_STREAM)) {
    // retrieve a collection of selected images
    ArrayList<Parcelable> list = intent.getParcelableArrayListExtra(Intent.EXTRA_STREAM);
    // iterate over these images
    if( list != null ) {
       for (Parcelable parcel : list) {
         Uri uri = (Uri) parcel;
         // TODO handle the images one by one here
       }
   }
} 

ध्यान दें कि यह केवल एपीआई स्तर 18+ द्वारा समर्थित है।


जब मैं एस्ट्रो फाइल मैनेजर का उपयोग करता हूं तो यह काम नहीं करता है। कोई विचार क्यों?
रोहित नंदकुमार

@hcpl उत्तर के लिए धन्यवाद। क्या आप कृपया मुझे बता सकते हैं कि कई चित्र कैसे प्राप्त करें ...?
नोबि

28
एक भी तस्वीर प्राप्त करना अब नए एंड्रॉइड वर्जन 4.4 (किटकैट) पर काम नहीं करता है। क्वेरी से _data स्तंभ शून्य मान देता है।
क्रिस्टोफर मैसर

1
@hcpl आपका मतलब 'Intent.hasExtra' से नहीं था, आपका मतलब 'data.hasExtra' था - यह मानकर कि डेटा onActivityResult () में आपका Intent पैरामीटर है।
इगोरगानापोलस्की

2
यह कोड पूरी तरह से प्री-कैटकट काम कर रहा है, लेकिन तब से दस्तावेज़ प्रदाता हैं। अपने जवाब में मैं बताता हूं कि किटकैट में क्या करना है।
अब्बथ

135

यहाँ ठीक कोड है कि hcpl पोस्ट करने के लिए एक अद्यतन है। लेकिन यह OI फ़ाइल प्रबंधक, एस्ट्रो फ़ाइल प्रबंधक और मीडिया गैलरी के साथ भी काम करता है (परीक्षण किया गया)। इसलिए मुझे लगता है कि यह हर फ़ाइल प्रबंधक के साथ काम करेगा (क्या उन लोगों की तुलना में कई अन्य हैं?)। उन्होंने लिखे गए कोड के लिए कुछ सुधार किए।

public class BrowsePicture extends Activity {

    //YOU CAN EDIT THIS TO WHATEVER YOU WANT
    private static final int SELECT_PICTURE = 1;

    private String selectedImagePath;
    //ADDED
    private String filemanagerstring;

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        ((Button) findViewById(R.id.Button01))
        .setOnClickListener(new OnClickListener() {

            public void onClick(View arg0) {

                // in onCreate or any event where your want the user to
                // select a file
                Intent intent = new Intent();
                intent.setType("image/*");
                intent.setAction(Intent.ACTION_GET_CONTENT);
                startActivityForResult(Intent.createChooser(intent,
                        "Select Picture"), SELECT_PICTURE);
            }
        });
    }

    //UPDATED
    public void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (resultCode == RESULT_OK) {
            if (requestCode == SELECT_PICTURE) {
                Uri selectedImageUri = data.getData();

                //OI FILE Manager
                filemanagerstring = selectedImageUri.getPath();

                //MEDIA GALLERY
                selectedImagePath = getPath(selectedImageUri);

                //DEBUG PURPOSE - you can delete this if you want
                if(selectedImagePath!=null)
                    System.out.println(selectedImagePath);
                else System.out.println("selectedImagePath is null");
                if(filemanagerstring!=null)
                    System.out.println(filemanagerstring);
                else System.out.println("filemanagerstring is null");

                //NOW WE HAVE OUR WANTED STRING
                if(selectedImagePath!=null)
                    System.out.println("selectedImagePath is the right one for you!");
                else
                    System.out.println("filemanagerstring is the right one for you!");
            }
        }
    }

    //UPDATED!
    public String getPath(Uri uri) {
        String[] projection = { MediaStore.Images.Media.DATA };
        Cursor cursor = managedQuery(uri, projection, null, null, null);
        if(cursor!=null)
        {
            //HERE YOU WILL GET A NULLPOINTER IF CURSOR IS NULL
            //THIS CAN BE, IF YOU USED OI FILE MANAGER FOR PICKING THE MEDIA
            int column_index = cursor
            .getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
            cursor.moveToFirst();
            return cursor.getString(column_index);
        }
        else return null;
    }

1
मैं OI पथ से बिटमैप छवि कैसे प्राप्त करूं?
विकास

2
कोड को देखो। टिप्पणी के साथ तर्ज पर // अब हम अपनी अभिलाषा को पूरा करते हैं ... यह आप सभी की जरूरत है। फिर एक पथ से एक बिटमैप को पुनः प्राप्त करने के लिए BitmapFactory वर्ग का उपयोग करें
पागल

धन्यवाद! आपके पास एक अच्छा बिंदु है, कभी भी अन्य फ़ाइल प्रबंधकों की कोशिश नहीं की :)।
एचसीपी

2
मैं कर्सर को भी बंद करना चाहूंगा :)
pgsandstrom

7
भी बदल सकता है else return null;में getPath(Uri uri)करने के लिए return uri.getPath();और पहले से छुटकारा पाने filemanagerstring = selectedImageUri.getPath();की जांच। इस तरह से आप केवल एक कॉल करते हैं getPath(Uri)और वापस पा सकते हैं (कोई फर्क नहीं पड़ता कि यह गैलरी या एक फ़ाइल प्रबंधक था जिसका उपयोग किया गया था)।
ashughes

24

hcpl के तरीके पूरी तरह से प्री-किटकैट पर काम करते हैं, लेकिन DocuPProvider एपीआई के साथ काम नहीं कर रहे हैं। इसके लिए बस डॉक्यूमेंटप्रोवाइडर्स के लिए आधिकारिक एंड्रॉइड ट्यूटोरियल का पालन करें: https://developer.android.com/guide/topics/providers/document-provider.html -> एक दस्तावेज़ खोलें, बिटमैप सेक्शन।

बस मैंने hcpl के कोड का उपयोग किया और इसे बढ़ाया: यदि छवि को पुनर्प्राप्त पथ के साथ फ़ाइल अपवाद को फेंकता है तो मैं इस फ़ंक्शन को कॉल करता हूं:

private Bitmap getBitmapFromUri(Uri uri) throws IOException {
        ParcelFileDescriptor parcelFileDescriptor =
             getContentResolver().openFileDescriptor(uri, "r");
        FileDescriptor fileDescriptor = parcelFileDescriptor.getFileDescriptor();
        Bitmap image = BitmapFactory.decodeFileDescriptor(fileDescriptor);
        parcelFileDescriptor.close();
        return image;
}

Nexus 5 पर परीक्षण किया गया।


वास्तव में उपयोगी उत्तर, "फोटो" ऐप से छवियों का चयन करने के लिए उपयोग किया जाना चाहिए।
अरुण बडोले

मैंने स्थानीय और सर्वर दोनों फाइलों पर यह कोशिश की, दोनों के लिए काम किया।
अरुण बडोले

11

उपरोक्त कोड के आधार पर, मैंने नीचे दिए गए कोड को परिलक्षित किया, हो सकता है कि यह अधिक उपयुक्त हो:

public String getPath(Uri uri) {
    String selectedImagePath;
    //1:MEDIA GALLERY --- query from MediaStore.Images.Media.DATA
    String[] projection = { MediaStore.Images.Media.DATA };
    Cursor cursor = managedQuery(uri, projection, null, null, null);
    if(cursor != null){
        int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
        cursor.moveToFirst();
        selectedImagePath = cursor.getString(column_index);
    }else{
        selectedImagePath = null;
    }

    if(selectedImagePath == null){
        //2:OI FILE Manager --- call method: uri.getPath()
        selectedImagePath = uri.getPath();
    }
    return selectedImagePath;
}

11

मैं @hcpl & @mad से समाधान के माध्यम से चला गया। hcpl का समाधान गैलरी में स्थानीय छवि के लिए अच्छी तरह से समर्थन करता है और पागल ने उसके ऊपर एक बेहतर समाधान प्रदान किया - यह OI / Astro / Dropbox छवि को भी लोड करने में मदद करता है। लेकिन मेरे ऐप में, पिक्सासा लाइब्रेरी पर काम करते हुए, जो अब एंड्रॉइड गैलरी में एकीकृत है, दोनों समाधान विफल हो जाते हैं।

मैंने खोज की और थोड़ा सा विश्लेषण किया और अंततः एक बेहतर और सुरुचिपूर्ण समाधान के साथ आया है जो इस सीमा को पार करता है। अपने ब्लॉग के लिए दिमितर दाराज़न्स्की का धन्यवाद , जिसने मुझे इस मामले में मदद की, मैंने इसे समझने में आसान बनाने के लिए थोड़ा संशोधित किया। यहाँ मेरा समाधान है -

public class BrowsePicture extends Activity {

//YOU CAN EDIT THIS TO WHATEVER YOU WANT
private static final int SELECT_PICTURE = 1;

private String selectedImagePath;
//ADDED
private String filemanagerstring;

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    ((Button) findViewById(R.id.Button01))
    .setOnClickListener(new OnClickListener() {

        public void onClick(View arg0) {

            // in onCreate or any event where your want the user to
            // select a file
            Intent intent = new Intent();
            intent.setType("image/*");
            intent.setAction(Intent.ACTION_GET_CONTENT);
            startActivityForResult(Intent.createChooser(intent,
                    "Select Picture"), SELECT_PICTURE);
        }
    });
}

public void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (resultCode == RESULT_OK) {
        if (requestCode == SELECT_PICTURE) {
            Uri selectedImageUri = data.getData();
            Log.d("URI VAL", "selectedImageUri = " + selectedImageUri.toString());
            selectedImagePath = getPath(selectedImageUri);

            if(selectedImagePath!=null){         
                // IF LOCAL IMAGE, NO MATTER IF ITS DIRECTLY FROM GALLERY (EXCEPT PICASSA ALBUM),
                // OR OI/ASTRO FILE MANAGER. EVEN DROPBOX IS SUPPORTED BY THIS BECAUSE DROPBOX DOWNLOAD THE IMAGE 
                // IN THIS FORM - file:///storage/emulated/0/Android/data/com.dropbox.android/...
                System.out.println("local image"); 
            }
            else{
                System.out.println("picasa image!");
                loadPicasaImageFromGallery(selectedImageUri);
            }
        }
    }
}


// NEW METHOD FOR PICASA IMAGE LOAD
private void loadPicasaImageFromGallery(final Uri uri) {
    String[] projection = {  MediaColumns.DATA, MediaColumns.DISPLAY_NAME };
    Cursor cursor = getContentResolver().query(uri, projection, null, null, null);
    if(cursor != null) {
        cursor.moveToFirst();

        int columnIndex = cursor.getColumnIndex(MediaColumns.DISPLAY_NAME);
        if (columnIndex != -1) {
            new Thread(new Runnable() {
                // NEW THREAD BECAUSE NETWORK REQUEST WILL BE MADE THAT WILL BE A LONG PROCESS & BLOCK UI
                // IF CALLED IN UI THREAD 
                public void run() {
                    try {
                        Bitmap bitmap = android.provider.MediaStore.Images.Media.getBitmap(getContentResolver(), uri);
                        // THIS IS THE BITMAP IMAGE WE ARE LOOKING FOR.
                    } catch (Exception ex) {
                        ex.printStackTrace();
                    }
                }
            }).start();
        }
    }
    cursor.close();
}


public String getPath(Uri uri) {
    String[] projection = {  MediaColumns.DATA};
    Cursor cursor = getContentResolver().query(uri, projection, null, null, null);
    if(cursor != null) {
        //HERE YOU WILL GET A NULLPOINTER IF CURSOR IS NULL
        //THIS CAN BE, IF YOU USED OI FILE MANAGER FOR PICKING THE MEDIA
        cursor.moveToFirst();
        int columnIndex = cursor.getColumnIndexOrThrow(MediaColumns.DATA);
        String filePath = cursor.getString(columnIndex);
        cursor.close();
        return filePath;
    }
    else 
        return uri.getPath();               // FOR OI/ASTRO/Dropbox etc
}

इसे जांचें और मुझे बताएं कि क्या इसके साथ कुछ समस्या है। मैंने इसका परीक्षण किया है और यह हर मामले में अच्छा काम करता है।

आशा है कि इससे सभी को मदद मिलेगी।


10

मान लें कि आपके पास केवल छवियों के लिए आपके एसडी कार्ड निर्देशिका में एक छवि फ़ोल्डर है।

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
// tells your intent to get the contents
// opens the URI for your image directory on your sdcard
intent.setType("file:///sdcard/image/*"); 
startActivityForResult(intent, 1);

फिर आप अपनी गतिविधि में सामग्री के साथ क्या करना चाहते हैं, यह आप तय कर सकते हैं।

यह छवि के लिए पथ का नाम प्राप्त करने के लिए एक उदाहरण था, अपने कोड के साथ यह परीक्षण करें कि आप यह सुनिश्चित कर सकें कि आप वापस आने वाले परिणामों को संभाल सकते हैं। अपनी आवश्यकताओं को बेहतर ढंग से फिट करने के लिए आप कोड को बदल सकते हैं।

protected final void onActivityResult(final int requestCode, final int
                     resultCode, final Intent i) {
    super.onActivityResult(requestCode, resultCode, i);

  // this matches the request code in the above call
  if (requestCode == 1) {
      Uri _uri = i.getData();

    // this will be null if no image was selected...
    if (_uri != null) {
      // now we get the path to the image file
     cursor = getContentResolver().query(_uri, null,
                                      null, null, null);
     cursor.moveToFirst();
     String imageFilePath = cursor.getString(0);
     cursor.close();
     }
   }

मेरी सलाह है कि सही तरीके से काम करने वाली छवियों को प्राप्त करने की कोशिश करें, मुझे लगता है कि समस्या एसडीकार्ड पर छवियों को एक्सेस करने की सामग्री है। एसडी कार्ड पर छवियों को प्रदर्शित करने पर एक नज़र डालें ।

यदि आप उस अप और रनिंग को प्राप्त कर सकते हैं, तो संभवतया एक सही प्रदाता की आपूर्ति करने वाले उदाहरण से, आपको अपने कोड के लिए कार्य-निर्धारण का पता लगाने में सक्षम होना चाहिए।

इस सवाल को अपनी प्रगति से अपडेट करके मुझे अपडेट रखें। सौभाग्य


@Anthony, आपकी प्रतिक्रिया के लिए धन्यवाद। दुर्भाग्य से यह मेरे लिए काम नहीं करता है। मुझे अगली त्रुटि मिलती है: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.GET_CONTENT typ=file:///sdcard/images/* }
माइकल केसलर

आपको startActivityforResultकिसी गतिविधि को कॉल करने और आपूर्ति करने की आवश्यकता है । यही मैं आगे क्या है, मेरे बुरे पर निर्णय लेने के बारे में बता रहा था।
एंथनी फोर्लोनी

यह अभी भी काम नहीं करता है ... मैं जांचता हूं कि फ़ोल्डर मौजूद है और फ़ोल्डर के अंदर एक छवि फ़ाइल है। मैं कॉल करता हूं startActivityForResult(intent, 1);और फिर भी यह त्रुटि मिलती है ... यह कोड गतिविधि के बाहर स्थित है, लेकिन मेरे पास गतिविधि का संदर्भ है और startActivityForResultउस संदर्भ पर विधि को कॉल करें - शायद यही कारण है?
माइकल केसलर

नाह, कारण नहीं होना चाहिए, 1कि आपके पास क्या है ? कोशिश करेंIMAGE_PICK
एंथनी फोर्लोनी

1
दूसरा परम मेरे लिए सिर्फ कुछ है, है ना? यह सिर्फ एक इंट है जो परिणाम के साथ मेरे पास वापस भेजा जाएगा। की जगह कोशिश भी Intent.ACTION_PICKकी Intent.ACTION_GET_CONTENT। आपका क्या मतलब है IMAGE_PICK? ऐसा कोई स्थिरांक नहीं है। मैंने भी कोशिश की intent.setData(Uri.fromFile(new File("/sdcard/image/")));। मैंने इनमें से सभी संभव संयोजनों की कोशिश की और काम करने के लिए कुछ भी नहीं लगता ...
माइकल केसलर

10

इस विषय के लिए यह मेरा पुनर्मिलन है, यहां सभी जानकारी एकत्र करना, अन्य प्रासंगिक स्टैक ओवरफ्लो प्रश्नों से। यह कुछ प्रदाता से छवियों को वापस करता है, जबकि बाहर की स्मृति की स्थिति और छवि रोटेशन को संभालता है। यह गैलरी, पिकासा और फ़ाइल प्रबंधकों का समर्थन करता है, जैसे ड्रॉप बॉक्स। उपयोग सरल है: इनपुट के रूप में, कंस्ट्रक्टर कंटेंट रिसॉल्वर और यूरी प्राप्त करता है। आउटपुट अंतिम बिटमैप है।

/**
 * Creates resized images without exploding memory. Uses the method described in android
 * documentation concerning bitmap allocation, which is to subsample the image to a smaller size,
 * close to some expected size. This is required because the android standard library is unable to
 * create a reduced size image from an image file using memory comparable to the final size (and
 * loading a full sized multi-megapixel picture for processing may exceed application memory budget).
 */

public class UserPicture {
    static int MAX_WIDTH = 600;
    static int MAX_HEIGHT = 800;
    Uri uri;
    ContentResolver resolver;
    String path;
    Matrix orientation;
    int storedHeight;
    int storedWidth;

    public UserPicture(Uri uri, ContentResolver resolver) {
        this.uri = uri;
        this.resolver = resolver;
    }

    private boolean getInformation() throws IOException {
        if (getInformationFromMediaDatabase())
            return true;

        if (getInformationFromFileSystem())
            return true;

        return false;
    }

    /* Support for gallery apps and remote ("picasa") images */
    private boolean getInformationFromMediaDatabase() {
        String[] fields = { Media.DATA, ImageColumns.ORIENTATION };
        Cursor cursor = resolver.query(uri, fields, null, null, null);

        if (cursor == null)
            return false;

        cursor.moveToFirst();
        path = cursor.getString(cursor.getColumnIndex(Media.DATA));
        int orientation = cursor.getInt(cursor.getColumnIndex(ImageColumns.ORIENTATION));
        this.orientation = new Matrix();
        this.orientation.setRotate(orientation);
        cursor.close();

        return true;
    }

    /* Support for file managers and dropbox */
    private boolean getInformationFromFileSystem() throws IOException {
        path = uri.getPath();

        if (path == null)
            return false;

        ExifInterface exif = new ExifInterface(path);
        int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION,
                                               ExifInterface.ORIENTATION_NORMAL);

        this.orientation = new Matrix();
        switch(orientation) {
            case ExifInterface.ORIENTATION_NORMAL:
                /* Identity matrix */
                break;
            case ExifInterface.ORIENTATION_FLIP_HORIZONTAL:
                this.orientation.setScale(-1, 1);
                break;
            case ExifInterface.ORIENTATION_ROTATE_180:
                this.orientation.setRotate(180);
                break;
            case ExifInterface.ORIENTATION_FLIP_VERTICAL:
                this.orientation.setScale(1, -1);
                break;
            case ExifInterface.ORIENTATION_TRANSPOSE:
                this.orientation.setRotate(90);
                this.orientation.postScale(-1, 1);
                break;
            case ExifInterface.ORIENTATION_ROTATE_90:
                this.orientation.setRotate(90);
                break;
            case ExifInterface.ORIENTATION_TRANSVERSE:
                this.orientation.setRotate(-90);
                this.orientation.postScale(-1, 1);
                break;
            case ExifInterface.ORIENTATION_ROTATE_270:
                this.orientation.setRotate(-90);
                break;
        }

        return true;
    }

    private boolean getStoredDimensions() throws IOException {
        InputStream input = resolver.openInputStream(uri);
        Options options = new Options();
        options.inJustDecodeBounds = true;
        BitmapFactory.decodeStream(resolver.openInputStream(uri), null, options);

        /* The input stream could be reset instead of closed and reopened if it were possible
           to reliably wrap the input stream on a buffered stream, but it's not possible because
           decodeStream() places an upper read limit of 1024 bytes for a reset to be made (it calls
           mark(1024) on the stream). */
        input.close();

        if (options.outHeight <= 0 || options.outWidth <= 0)
            return false;

        storedHeight = options.outHeight;
        storedWidth = options.outWidth;

        return true;
    }

    public Bitmap getBitmap() throws IOException {
        if (!getInformation())
            throw new FileNotFoundException();

        if (!getStoredDimensions())
            throw new InvalidObjectException(null);

        RectF rect = new RectF(0, 0, storedWidth, storedHeight);
        orientation.mapRect(rect);
        int width = (int)rect.width();
        int height = (int)rect.height();
        int subSample = 1;

        while (width > MAX_WIDTH || height > MAX_HEIGHT) {
            width /= 2;
            height /= 2;
            subSample *= 2;
        }

        if (width == 0 || height == 0)
            throw new InvalidObjectException(null);

        Options options = new Options();
        options.inSampleSize = subSample;
        Bitmap subSampled = BitmapFactory.decodeStream(resolver.openInputStream(uri), null, options);

        Bitmap picture;
        if (!orientation.isIdentity()) {
            picture = Bitmap.createBitmap(subSampled, 0, 0, options.outWidth, options.outHeight,
                                          orientation, false);
            subSampled.recycle();
        } else
            picture = subSampled;

        return picture;
    }
}

संदर्भ:


9

डाउनलोड करने योग्य स्रोत कोड के साथ छवि पिकर के बारे में दो उपयोगी ट्यूटोरियल हैं:

एंड्रॉइड इमेज पिकर कैसे बनाएं

एंड्रॉइड पर चयन और फसल छवि कैसे करें

हालांकि, ऐप को कुछ समय के लिए बंद करने के लिए मजबूर किया जाएगा, आप इसे एंड्रॉइड को जोड़कर ठीक कर सकते हैं: जैसा कि मैनिफेस्ट फ़ाइल में मुख्य गतिविधि में कॉन्फ़िगर करता है:

<activity android:name=".MainActivity"
                  android:label="@string/app_name" android:configChanges="keyboardHidden|orientation" >

ऐसा लगता है कि कैमरा एपीआई ने अभिविन्यास के साथ नियंत्रण खो दिया है इसलिए यह मदद करेगा। :)


7

2.3 (जिंजरब्रेड) -4.4 (किटकैट), 5.0 (लॉलीपॉप) और 6.0 (मार्शमैलो) के लिए समाधान कार्य के नीचे: -

चित्र चुनने के लिए गैलरी खोलने के लिए चरण 1 कोड:

public static final int PICK_IMAGE = 1;
private void takePictureFromGalleryOrAnyOtherFolder() 
{
    Intent intent = new Intent();
    intent.setType("image/*");
    intent.setAction(Intent.ACTION_GET_CONTENT);
    startActivityForResult(Intent.createChooser(intent, "Select Picture"), PICK_IMAGE);
}

चरण 2 में डेटा प्राप्त करने के लिए कोड onActivityResult:

 @Override
 protected void onActivityResult(int requestCode, int resultCode, Intent data) {
            super.onActivityResult(requestCode, resultCode, data);
            if (resultCode == Activity.RESULT_OK) {
               if (requestCode == PICK_IMAGE) {
                    Uri selectedImageUri = data.getData();
                    String imagePath = getRealPathFromURI(selectedImageUri);
                   //Now you have imagePath do whatever you want to do now
                 }//end of inner if
             }//end of outer if
      }

 public String getRealPathFromURI(Uri contentUri) {
        //Uri contentUri = Uri.parse(contentURI);

        String[] projection = { MediaStore.Images.Media.DATA };
        Cursor cursor = null;
        try {
            if (Build.VERSION.SDK_INT > 19) {
                // Will return "image:x*"
                String wholeID = DocumentsContract.getDocumentId(contentUri);
                // Split at colon, use second item in the array
                String id = wholeID.split(":")[1];
                // where id is equal to
                String sel = MediaStore.Images.Media._ID + "=?";

                cursor = context.getContentResolver().query(
                        MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
                        projection, sel, new String[] { id }, null);
            } else {
                cursor = context.getContentResolver().query(contentUri,
                        projection, null, null, null);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }

        String path = null;
        try {
            int column_index = cursor
                    .getColumnIndex(MediaStore.Images.Media.DATA);
            cursor.moveToFirst();
            path = cursor.getString(column_index).toString();
            cursor.close();
        } catch (NullPointerException e) {
            e.printStackTrace();
        }
        return path;
    }

यह मेरे लिए काम कर रहा है मैं Marshmallow के साथ Nexus 5 का उपयोग कर रहा हूं। आप कौन सा फोन इस्तेमाल कर रहे हैं।
पंकज

im भी Google सांठगांठ करता है, लेकिन मेरी गैलरी चयनित छवि का नाम या पथ प्राप्त करने के लिए लड़खड़ाया छवि im null हो रही है
Erum

java.lang.SecurityException: Permission Denial: read com.android.providers.media.MediaProvider uri सामग्री: // मीडिया / बाहरी / चित्र / मीडिया pid = 31332 से, uid - 11859 के लिए android.permission.READ_EXTERNAL_STORAGE, या ग्रांउट्रिएशन () की आवश्यकता है। यह त्रुटि हो रही है
एरुम

आपने अनुमति दी है जो इसका दिखावा हैREAD_EXTERNAL_STORAGE
पंकज

हाँ, मैंने पहले ही प्रकट में अनुमति जोड़ दी है, लेकिन मैंने रन
Erum

6

चित्र और वीडियो प्रदर्शित करने के लिए यह प्रयास करें:

    Intent intent = new Intent();
    intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
    startActivityForResult(intent, 1);
    startActivityForResult(Intent.createChooser(intent,"Wybierz plik"), SELECT_FILE);

5

बस अगर यह मदद करता है; मैं बिटमैप प्राप्त करने के लिए ऐसा करता हूं:

InputStream is = context.getContentResolver().openInputStream(imageUri);
Bitmap bitmap = BitmapFactory.decodeStream(is);

यह सबसे आसान उत्तर है (और मेरे लिए काम करने वाला एकमात्र)। इतनी अच्छी तरह से किया!
डेरलिन

5

उपरोक्त उत्तर सही हैं। मुझे एक अलग मुद्दे का सामना करना पड़ा जहां गैलरी से एक छवि का चयन करते समय एचटीसी एम 8 में मेरा एप्लिकेशन क्रैश हो जाता है। मुझे छवि पथ के लिए अशक्त मूल्य मिल रहा है। मैंने निम्नलिखित समाधान के साथ तय किया और अनुकूलित किया। onActivityResult विधि

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if ((requestCode == RESULT_LOAD_IMAGE) && (resultCode == RESULT_OK)) {
     if (data != null) {

            Uri selectedImageUri = null;
            selectedImageUri = data.getData();
            String[] filePathColumn = { MediaStore.Images.Media.DATA };

            Cursor imageCursor = mainActivity.getContentResolver().query(
                    selectedImageUri, filePathColumn, null, null, null);

            if (imageCursor == null) {
                return;
            }

            imageCursor.moveToFirst();
            int columnIndex = imageCursor.getColumnIndex(filePathColumn[0]);
            picturePath = imageCursor.getString(columnIndex);
            if (picturePath == null) {
                picturePath = selectedImageUri.getPath();
                String wholeID = DocumentsContract
                        .getDocumentId(selectedImage);

                // Split at colon, use second item in the array
                String id = wholeID.split(":")[1];

                String[] column = { MediaStore.Images.Media.DATA };

                // where id is equal to
                String sel = MediaStore.Images.Media._ID + "=?";

                Cursor cursor = mainActivity.getContentResolver().query(
                        MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
                        column, sel, new String[] { id }, null);

                columnIndex = cursor.getColumnIndex(column[0]);

                if (cursor.moveToFirst()) {
                    picturePath = cursor.getString(columnIndex);
                }

                cursor.close();
            }
            picturePathAbs = new File(picturePath).getAbsolutePath();
            imageCursor.close();
        }

}


मैं इसी तरह की समस्या का सामना करता हूं और चित्रपट हमेशा अशक्त रहता है। मैं आपको हल करने की कोशिश करता हूं, लेकिन काम नहीं करता है, इसके अलावा getDocumentId के लिए आवश्यक है> एपीआई 19
स्टोचो एंड्रीव

3
package com.ImageConvertingDemo;

import java.io.BufferedInputStream;
import java.io.FileInputStream;

import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.util.Log;
import android.widget.EditText;
import android.widget.ImageView;

public class MyActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        EditText tv = (EditText)findViewById(R.id.EditText01);
        ImageView iv = (ImageView)findViewById(R.id.ImageView01);
        FileInputStream in;
        BufferedInputStream buf;
            try 
            {
                in = new FileInputStream("/sdcard/smooth.png");
                buf = new BufferedInputStream(in,1070);
                System.out.println("1.................."+buf);
                byte[] bMapArray= new byte[buf.available()];
                tv.setText(bMapArray.toString());
                buf.read(bMapArray);
                Bitmap bMap = BitmapFactory.decodeByteArray(bMapArray, 0, bMapArray.length);

                /*for (int i = 0; i < bMapArray.length; i++) 
                {
                System.out.print("bytearray"+bMapArray[i]);
                }*/
                iv.setImageBitmap(bMap);
                //tv.setText(bMapArray.toString());
                //tv.setText(buf.toString());
                if (in != null) 
                {
                    in.close();
                }
                if (buf != null) 
                {
                    buf.close();
                }

            } 
            catch (Exception e) 
            {
                Log.e("Error reading file", e.toString());
            }
    }
}

1
उत्तर देने से पहले आपको प्रश्न समझ में नहीं आया। साथ ही, आपने जो भी करने की कोशिश की उसके बारे में आपने कोई विवरण शामिल नहीं किया। साथ ही, आपका कोड कुछ अच्छी तरह से स्थापित जावा प्रोग्रामिंग मानकों को तोड़ता है।
टोरन डिक

3
public class BrowsePictureActivity extends Activity {

    // this is the action code we use in our intent, 
    // this way we know we're looking at the response from our own action
    private static final int SELECT_PICTURE = 1;

    private String selectedImagePath;

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        ((Button) findViewById(R.id.Button01))
                .setOnClickListener(new OnClickListener() {

                    public void onClick(View arg0) {

                        // in onCreate or any event where your want the user to
                        // select a file
                        Intent intent = new Intent();
                        intent.setType("image/*");
                        intent.setAction(Intent.ACTION_GET_CONTENT);
                        startActivityForResult(Intent.createChooser(intent,
                                "Select Picture"), SELECT_PICTURE);
                    }
                });
    }

    public void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (resultCode == RESULT_OK) {
            if (requestCode == SELECT_PICTURE) {
                Uri selectedImageUri = data.getData();
                selectedImagePath = getPath(selectedImageUri);
            }
        }
    }

    /**
     * helper to retrieve the path of an image URI
     */
    public String getPath(Uri uri) {
            // just some safety built in 
            if( uri == null ) {
                // TODO perform some logging or show user feedback
                return null;
            }
            // try to retrieve the image from the media store first
            // this will only work for images selected from gallery
            String[] projection = { MediaStore.Images.Media.DATA };
            Cursor cursor = managedQuery(uri, projection, null, null, null);
            if( cursor != null ){
                int column_index = cursor
                .getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
                cursor.moveToFirst();
                return cursor.getString(column_index);
            }
            // this is our fallback here
            return uri.getPath();
    }

}

3

किसी विशिष्ट प्रकार की फ़ाइल को पुनः प्राप्त करें

इस उदाहरण को छवि की एक प्रति मिलेगी।

static final int REQUEST_IMAGE_GET = 1;

public void selectImage() {
    Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
    intent.setType("image/*");
    if (intent.resolveActivity(getPackageManager()) != null) {
        startActivityForResult(intent, REQUEST_IMAGE_GET);
    }
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == REQUEST_IMAGE_GET && resultCode == RESULT_OK) {
        Bitmap thumbnail = data.getParcelable("data");
        Uri fullPhotoUri = data.getData();
        // Do work with photo saved at fullPhotoUri
        ...
    }
}

एक विशिष्ट प्रकार की फ़ाइल खोलें

4.4 या उच्चतर पर चलने पर, आप एक ऐसी फ़ाइल खोलने का अनुरोध करते हैं जो किसी अन्य ऐप द्वारा प्रबंधित की जाती है

static final int REQUEST_IMAGE_OPEN = 1;

public void selectImage() {
    Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
    intent.setType("image/*");
    intent.addCategory(Intent.CATEGORY_OPENABLE);
    // Only the system receives the ACTION_OPEN_DOCUMENT, so no need to test.
    startActivityForResult(intent, REQUEST_IMAGE_OPEN);
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == REQUEST_IMAGE_OPEN && resultCode == RESULT_OK) {
        Uri fullPhotoUri = data.getData();
        // Do work with full size photo saved at fullPhotoUri
        ...
    }
}

मूल स्रोत


2

पिछले उत्तर के अतिरिक्त, यदि आपको सही रास्ता मिलने में समस्या आ रही है (जैसे AndroZip) तो आप इसका उपयोग कर सकते हैं:

  public String getPath(Uri uri ,ContentResolver contentResolver) {
        String[] projection = {  MediaStore.MediaColumns.DATA};
        Cursor cursor;
        try{
            cursor = contentResolver.query(uri, projection, null, null, null);
        } catch (SecurityException e){
            String path = uri.getPath();
            String result = tryToGetStoragePath(path);
            return  result;
        }
        if(cursor != null) {
            //HERE YOU WILL GET A NULLPOINTER IF CURSOR IS NULL
            //THIS CAN BE, IF YOU USED OI FILE MANAGER FOR PICKING THE MEDIA
            cursor.moveToFirst();
            int columnIndex = cursor.getColumnIndexOrThrow(MediaStore.MediaColumns.DATA);
            String filePath = cursor.getString(columnIndex);
            cursor.close();
            return filePath;
        }
        else
            return uri.getPath();               // FOR OI/ASTRO/Dropbox etc
    }

    private String tryToGetStoragePath(String path) {
        int actualPathStart = path.indexOf("//storage");
        String result = path;

        if(actualPathStart!= -1 && actualPathStart< path.length())
            result = path.substring(actualPathStart+1 , path.length());

        return result;
    }

क्या किसी को यहाँ छवि की उड़ी जानने की आवश्यकता है? क्या होगा अगर मैं सिर्फ गैलरी से एक मनमानी छवि चुनना चाहता हूं?
इगोरगानापोलस्की

आशय जो आपको गैलरी से प्राप्त होगा वह आपको url
Bugraoral

1

कृपया गैलरी से एकल छवि के चयन के लिए उत्तर खोजें

import android.app.Activity;
import android.net.Uri;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;

import java.io.ByteArrayOutputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;

public class PickImage extends Activity {

    Button btnOpen, btnGet, btnPick;
    TextView textInfo1, textInfo2;
    ImageView imageView;

    private static final int RQS_OPEN_IMAGE = 1;
    private static final int RQS_GET_IMAGE = 2;
    private static final int RQS_PICK_IMAGE = 3;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.image_pick);
        btnOpen = (Button)findViewById(R.id.open);
        btnGet = (Button)findViewById(R.id.get);
        btnPick = (Button)findViewById(R.id.pick);
        textInfo1 = (TextView)findViewById(R.id.info1);
        textInfo2 = (TextView)findViewById(R.id.info2);
        imageView = (ImageView) findViewById(R.id.image);

        btnOpen.setOnClickListener(btnOpenOnClickListener);
        btnGet.setOnClickListener(btnGetOnClickListener);
        btnPick.setOnClickListener(btnPickOnClickListener);
    }

    View.OnClickListener btnOpenOnClickListener = new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent = new Intent();
            intent.setAction(Intent.ACTION_OPEN_DOCUMENT);
            intent.addCategory(Intent.CATEGORY_OPENABLE);
            intent.setType("image/*");

            startActivityForResult(intent, RQS_OPEN_IMAGE);
        }
    };

    View.OnClickListener btnGetOnClickListener = new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent = new Intent();
            intent.setAction(Intent.ACTION_GET_CONTENT);
            intent.addCategory(Intent.CATEGORY_OPENABLE);
            intent.setType("image/*");

            startActivityForResult(intent, RQS_OPEN_IMAGE);
        }
    };

    View.OnClickListener btnPickOnClickListener = new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent = new Intent(Intent.ACTION_PICK,
                    android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
            startActivityForResult(intent, RQS_PICK_IMAGE);
        }
    };

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (resultCode == Activity.RESULT_OK) {


            if (requestCode == RQS_OPEN_IMAGE ||
                    requestCode == RQS_GET_IMAGE ||
                    requestCode == RQS_PICK_IMAGE) {

                imageView.setImageBitmap(null);
                textInfo1.setText("");
                textInfo2.setText("");

                Uri mediaUri = data.getData();
                textInfo1.setText(mediaUri.toString());
                String mediaPath = mediaUri.getPath();
                textInfo2.setText(mediaPath);

                //display the image
                try {
                    InputStream inputStream = getBaseContext().getContentResolver().openInputStream(mediaUri);
                    Bitmap bm = BitmapFactory.decodeStream(inputStream);

                   ByteArrayOutputStream stream = new ByteArrayOutputStream();
                    byte[] byteArray = stream.toByteArray();

                    imageView.setImageBitmap(bm);

                } catch (FileNotFoundException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

0

गैलरी या कैमरे से छवि खोलने का सबसे तेज़ तरीका।

मूल संदर्भ: प्रोग्राम से गैलरी में गैलरी से छवि प्राप्त करें

निम्नलिखित विधि गैलरी या कैमरे से छवि प्राप्त करेगी और इसे एक छवि दृश्य में दिखाएगी। चयनित छवि को आंतरिक रूप से संग्रहीत किया जाएगा।

xml के लिए कोड

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.exampledemo.parsaniahardik.uploadgalleryimage.MainActivity">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/btn"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="20dp"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="Capture Image and upload to server" />

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Below image is fetched from server"
        android:layout_marginTop="5dp"
        android:textSize="23sp"
        android:gravity="center"
        android:textColor="#000"/>

    <ImageView
        android:layout_width="300dp"
        android:layout_height="300dp"
        android:layout_gravity="center"
        android:layout_marginTop="10dp"
        android:scaleType="fitXY"
        android:src="@mipmap/ic_launcher"
        android:id="@+id/iv"/>

</LinearLayout>

जावा वर्ग

import android.content.Intent;
import android.graphics.Bitmap;
import android.media.MediaScannerConnection;
import android.os.Environment;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.Toast;
import com.androidquery.AQuery;
import org.json.JSONException;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Calendar;
import java.util.HashMap;

public class MainActivity extends AppCompatActivity implements AsyncTaskCompleteListener{

    private ParseContent parseContent;
    private Button btn;
    private ImageView imageview;
    private static final String IMAGE_DIRECTORY = "/demonuts_upload_camera";
    private final int CAMERA = 1;
    private AQuery aQuery;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        parseContent = new ParseContent(this);
        aQuery = new AQuery(this);

        btn = (Button) findViewById(R.id.btn);
        imageview = (ImageView) findViewById(R.id.iv);

        btn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
                startActivityForResult(intent, CAMERA);
            }
        });

    }

    @Override
    public void onActivityResult(int requestCode, int resultCode, Intent data) {

        super.onActivityResult(requestCode, resultCode, data);
        if (resultCode == this.RESULT_CANCELED) {
            return;
        }
        if (requestCode == CAMERA) {
            Bitmap thumbnail = (Bitmap) data.getExtras().get("data");
            String path = saveImage(thumbnail);
            try {
                uploadImageToServer(path);
            } catch (IOException e) {
                e.printStackTrace();
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
    }

    private void uploadImageToServer(final String path) throws IOException, JSONException {

        if (!AndyUtils.isNetworkAvailable(MainActivity.this)) {
            Toast.makeText(MainActivity.this, "Internet is required!", Toast.LENGTH_SHORT).show();
            return;
        }

        HashMap<String, String> map = new HashMap<String, String>();
        map.put("url", "https://demonuts.com/Demonuts/JsonTest/Tennis/uploadfile.php");
        map.put("filename", path);
        new MultiPartRequester(this, map, CAMERA, this);
        AndyUtils.showSimpleProgressDialog(this);
    }

    @Override
    public void onTaskCompleted(String response, int serviceCode) {
        AndyUtils.removeSimpleProgressDialog();
        Log.d("res", response.toString());
        switch (serviceCode) {

            case CAMERA:
                if (parseContent.isSuccess(response)) {
                    String url = parseContent.getURL(response);
                    aQuery.id(imageview).image(url);
                }
        }
    }

    public String saveImage(Bitmap myBitmap) {
        ByteArrayOutputStream bytes = new ByteArrayOutputStream();
        myBitmap.compress(Bitmap.CompressFormat.JPEG, 90, bytes);
        File wallpaperDirectory = new File(
                Environment.getExternalStorageDirectory() + IMAGE_DIRECTORY);
        // have the object build the directory structure, if needed.
        if (!wallpaperDirectory.exists()) {
            wallpaperDirectory.mkdirs();
        }

        try {
            File f = new File(wallpaperDirectory, Calendar.getInstance()
                    .getTimeInMillis() + ".jpg");
            f.createNewFile();
            FileOutputStream fo = new FileOutputStream(f);
            fo.write(bytes.toByteArray());
            MediaScannerConnection.scanFile(this,
                    new String[]{f.getPath()},
                    new String[]{"image/jpeg"}, null);
            fo.close();
            Log.d("TAG", "File Saved::--->" + f.getAbsolutePath());

            return f.getAbsolutePath();
        } catch (IOException e1) {
            e1.printStackTrace();
        }
        return "";
    }
}

0

यहाँ मेरा उदाहरण है, शायद आपके मामले के रूप में नहीं।


यह मानते हुए कि आपको अपने एपीआई प्रदाता से आधार 64 प्रारूप मिलता है, इसे एक फ़ाइल नाम और फ़ाइल एक्सटेंशन दें, इसे फ़ाइल सिस्टम में निश्चित स्थान पर सहेजें।

public static void shownInBuiltInGallery(final Context ctx, String strBase64Image, final String strFileName, final String strFileExtension){

new AsyncTask<String, String, File>() {
    @Override
    protected File doInBackground(String... strBase64Image) {

        Bitmap bmpImage = convertBase64StringToBitmap(strBase64Image[0], Base64.NO_WRAP);

        if(bmpImage == null) {
            cancel(true);
            return null;
        }

        byte[] byImage = null;

        if(strFileExtension.compareToIgnoreCase(FILE_EXTENSION_JPG) == 0) {
            byImage = convertToJpgByte(bmpImage); // convert bitmap to binary for latter use
        } else if(strFileExtension.compareToIgnoreCase(FILE_EXTENSION_PNG) == 0){
            byImage = convertToPngByte(bmpImage); // convert bitmap to binary for latter use
        } else if(strFileExtension.compareToIgnoreCase(FILE_EXTENSION_BMP) == 0){
            byImage = convertToBmpByte(bmpImage); // convert bitmap to binary for latter use
        } else {
            cancel(true);
            return null;
        }

        if(byImage == null) {
            cancel(true);
            return null;
        }

        File imageFolder = ctx.getExternalCacheDir();

        if(imageFolder.exists() == false){
            if(imageFolder.mkdirs() == false){
                cancel(true);
                return null;
            }
        }

        File imageFile = null;

        try {
            imageFile = File.createTempFile(strFileName, strFileExtension, imageFolder);
        } catch (IOException e){
            e.printStackTrace();
        }

        if(imageFile == null){
            cancel(true);
            return null;
        }

        if (imageFile.exists() == true) {
            if(imageFile.delete() == false){
                cancel(true);
                return null;
            }
        }

        FileOutputStream fos = null;

        try {
            fos = new FileOutputStream(imageFile.getPath());
            fos.write(byImage);
            fos.flush();
            fos.close();
        } catch (java.io.IOException e) {
            e.printStackTrace();
        } finally {
            fos = null;
        }

        return imageFile;
    }

    @Override
    protected void onPostExecute(File file) {
        super.onPostExecute(file);

            String strAuthority = ctx.getPackageName() + ".provider";
            Uri uriImage = FileProvider.getUriForFile(ctx, strAuthority, file);

            Intent intent = new Intent(Intent.ACTION_VIEW);
            intent.setDataAndType(uriImage, "image/*");
            intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
            ctx.startActivity(intent);

    }
}.execute(strBase64Image);}

AndroidManifest.xml में पहले स्थान पर एक उचित फ़ाइल प्रदाता सेट करना न भूलें

        <provider
        android:name="android.support.v4.content.FileProvider"
        android:authorities="${applicationId}.provider"
        android:exported="false"
        android:grantUriPermissions="true">

        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/file_paths"/>
    </provider>

जहाँ फ़ाइल पथ में एक xml है ... / Res / xml / file_path.xml

<?xml version="1.0" encoding="utf-8"?>

<external-files-path name="external_files" path="Accessory"/>

<external-path name="ex_Download" path="Download/" />
<external-path name="ex_Pictures" path="Pictures/" />

<external-files-path name="my_Download" path="Download/" />
<external-files-path name="my_Pictures" path="Pictures/" />
<external-cache-path name="my_cache" path="." />

<files-path name="private_Download" path="Download/" />
<files-path name="private_Pictures" path="Pictures/" />
<cache-path name="private_cache" path="." />


लंबी कहानी संक्षेप में, फ़ाइल प्रदाता पहले से तैयार है, ज्ञात और सुलभ तस्वीर स्रोत के लिए इरादे को पास करें, अन्यथा, वांछित स्थान पर तस्वीर को सहेजें और फिर इरादे के लिए स्थान (उरी के रूप में) पास करें।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.