बिटमैप को फ़ाइल में बदलें


127

मैं समझता हूं कि BitmapFactoryकिसी फाइल को बिटमैप में परिवर्तित कर सकते हैं, लेकिन क्या बिटमैप इमेज को फाइल में बदलने का कोई तरीका है?

जवाबों:


82

इसे इस्तेमाल करे:

bitmap.compress(Bitmap.CompressFormat.PNG, quality, outStream);

यह देखो


10
लेकिन मैं FileOutputStreamसिर्फ एक फ़ाइल नहीं चाहता । क्या इसके चारों ओर एक रास्ता है?
15

9
इसके अलावा, क्या है quality?
Mxyk

1
एक FileOutputStream है कि आप किसी फ़ाइल में कैसे लिखते हैं। डेवलपर
।android.com

मैं वास्तव में नहीं जानता कि आपका क्या मतलब है ... आप फ़ाइल बनाने के लिए FileOutputStream का उपयोग करते हैं। और आप FileOutputStream बनाने के लिए एक फ़ाइल उदाहरण (जैसे amsiddh के उदाहरण में) का उपयोग कर सकते हैं जिसे आप बिटमैप को निर्यात कर सकते हैं। उस के साथ (एक फ़ाइल उदाहरण, फ़ाइल सिस्टम पर एक वास्तविक फ़ाइल और FileOutputStream) आपके पास वह सब कुछ होना चाहिए जिसकी आपको आवश्यकता है, नहीं?
पी। मल्च

235

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

//create a file to write bitmap data
File f = new File(context.getCacheDir(), filename);
f.createNewFile();

//Convert bitmap to byte array
Bitmap bitmap = your bitmap;
ByteArrayOutputStream bos = new ByteArrayOutputStream();
bitmap.compress(CompressFormat.PNG, 0 /*ignored for PNG*/, bos);
byte[] bitmapdata = bos.toByteArray();

//write the bytes in file
FileOutputStream fos = new FileOutputStream(f);
fos.write(bitmapdata);
fos.flush();
fos.close();

36
फ्लश और अपने आउटपुट स्ट्रीम को बंद करने के लिए मत भूलना :)
बेन हॉलैंड

3
कोड ठीक काम करता है, लेकिन संपीड़ित विधि में बहुत समय लगता है। चारों ओर कोई काम?
शैल आदी

10
incase लोग सोच रहे हैं कि गुणवत्ता मीट्रिक क्या है। यह 0 से 100 के निम्न स्तर का है, फ़ोटोशॉप निर्यात के समान उच्च है, जैसा कि उल्लेख किया गया है, पीएनजी के लिए इसकी अनदेखी की गई है, लेकिन आप उपयोग करना चाह सकते हैं CompressFormat.JPEG। Google डोको के अनुसार: कंप्रेसर को संकेत, 0-100। 0 का मतलब छोटे आकार के लिए सेक, 100 का मतलब अधिकतम गुणवत्ता के लिए सेक। PNG जैसे कुछ प्रारूप, जो दोषरहित हैं, गुणवत्ता सेटिंग की अनदेखी करेंगे
wired00

3
क्या कैश निर्देशिका से फ़ाइल स्वचालित रूप से हटा दी जाएगी?
शजील अफजल

1
क्यों एक का उपयोग करें ByteArrayOutputStream, उस से एक बाइट सरणी प्राप्त करें, फिर ए लिखें FileOutputStream? क्यों नहीं बस FileOutputStreamमें Bitmap.compress?
इन्सानिटीऑनबून

39
File file = new File("path");
OutputStream os = new BufferedOutputStream(new FileOutputStream(file));
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, os);
os.close();

java.io.FileNotFoundException: / पाथ: ओपन फेल: EROFS (रीड ओनली फाइल सिस्टम)
प्रसाद

1
@ प्रसाद सुनिश्चित करें कि आप अपने File()कंस्ट्रक्टर के लिए एक सही रास्ता बनाते हैं ।
सुगंधी

इसका एक डिफ़ॉल्ट मार्ग है?
नाथिएल बारोस

सही समाधान
Xan

बिटमैप.कॉम क्या है? यह फ़ंक्शन JPEG प्रारूप क्यों देता है? और 100 क्या है
रोघायह होसेनी

11

परिवर्तित Bitmapकरने के लिए Fileकी जरूरत है पृष्ठभूमि (नहीं म मुख्य थ्रेड) यह यूआई विशेष रूप से अगर लटका हुआ है में किया जाना bitmapबड़ी थी

File file;

public class fileFromBitmap extends AsyncTask<Void, Integer, String> {

    Context context;
    Bitmap bitmap;
    String path_external = Environment.getExternalStorageDirectory() + File.separator + "temporary_file.jpg";

    public fileFromBitmap(Bitmap bitmap, Context context) {
        this.bitmap = bitmap;
        this.context= context;
    }

    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        // before executing doInBackground
        // update your UI
        // exp; make progressbar visible
    }

    @Override
    protected String doInBackground(Void... params) {

        ByteArrayOutputStream bytes = new ByteArrayOutputStream();
        bitmap.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
        file = new File(Environment.getExternalStorageDirectory() + File.separator + "temporary_file.jpg");
        try {
            FileOutputStream fo = new FileOutputStream(file);
            fo.write(bytes.toByteArray());
            fo.flush();
            fo.close();
        } catch (IOException e) {
            e.printStackTrace();
        }

        return null;
    }


    @Override
    protected void onPostExecute(String s) {
        super.onPostExecute(s);
        // back to main thread after finishing doInBackground
        // update your UI or take action after
        // exp; make progressbar gone

         sendFile(file);

    }
}

बुला रहा है

new fileFromBitmap(my_bitmap, getApplicationContext()).execute();

आप का उपयोग करना चाहिए fileमें onPostExecute

fileकैश की जगह लाइन में जमा होने के लिए निर्देशिका बदलने के लिए:

 file = new File(Environment.getExternalStorageDirectory() + File.separator + "temporary_file.jpg");

साथ में :

file  = new File(context.getCacheDir(), "temporary_file.jpg");

1
यह मुझे कुछ समय के लिए "FileNotFound" अपवाद देता है। मैं अभी भी जांच कर रहा हूं कि ऐसा क्यों होता है। इसके अलावा हो सकता है आप जेपीजी की तुलना में अपने चारों ओर 40-50% कम आकार .webp विस्तार के साथ छलबल बचत पर विचार करना चाहिए
Pranaysharma

मुझे लगता है कि "FileNotFound" अपवाद तब होता है जब कैश को सहेजा जाता है तो किसी तरह कैश को साफ़ किया जाता है (कैश को प्राप्त करने के कई तरीके, शायद किसी अन्य एप्लिकेशन द्वारा) @Pranaysharma
Mohamed Embaby

कंस्ट्रक्टर के बाद निष्पादित () को याद नहीं कर रहा है: नई फ़ाइलफ्रेमबिट (my_bitmap, getApplicationContext ()); ?
एंड्रिया लेगांज़ा

1
@AndreaLeganza हाँ यह गायब था, मैंने अपना उत्तर संपादित किया, धन्यवाद।
मोहम्मद एम्बे

AsyncTask में कॉन्टेक्ट रखने से मेमोरी लीक हो सकती है !!! youtube.com/watch?v=bNM_3YkK2Ws
slaviboy 14

2

अधिकांश उत्तर बहुत लंबे या बहुत कम हैं जो उद्देश्य को पूरा नहीं करते हैं। बिटमैप को फ़ाइल ऑब्जेक्ट में कनवर्ट करने के लिए जावा या कोटलिन कोड की तलाश करने वालों के लिए। यहाँ इस विषय पर विस्तृत लेख लिखा गया है। एंड्रॉइड में बिटमैप को फ़ाइल में बदलें

public static File bitmapToFile(Context context,Bitmap bitmap, String fileNameToSave) { // File name like "image.png"
        //create a file to write bitmap data
        File file = null;
        try {
            file = new File(Environment.getExternalStorageDirectory() + File.separator + fileNameToSave);
            file.createNewFile();

//Convert bitmap to byte array
            ByteArrayOutputStream bos = new ByteArrayOutputStream();
            bitmap.compress(Bitmap.CompressFormat.PNG, 0 , bos); // YOU can also save it in JPEG
            byte[] bitmapdata = bos.toByteArray();

//write the bytes in file
            FileOutputStream fos = new FileOutputStream(file);
            fos.write(bitmapdata);
            fos.flush();
            fos.close();
            return file;
        }catch (Exception e){
            e.printStackTrace();
            return file; // it will return null
        }
    }

0

आशा है कि यह आपको मदद करेगा

वर्ग की मुख्यता: AppCompatActivity () {

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_main)

    // Get the bitmap from assets and display into image view
    val bitmap = assetsToBitmap("tulip.jpg")
    // If bitmap is not null
    bitmap?.let {
        image_view_bitmap.setImageBitmap(bitmap)
    }


    // Click listener for button widget
    button.setOnClickListener{
        if(bitmap!=null){
            // Save the bitmap to a file and display it into image view
            val uri = bitmapToFile(bitmap)
            image_view_file.setImageURI(uri)

            // Display the saved bitmap's uri in text view
            text_view.text = uri.toString()

            // Show a toast message
            toast("Bitmap saved in a file.")
        }else{
            toast("bitmap not found.")
        }
    }
}


// Method to get a bitmap from assets
private fun assetsToBitmap(fileName:String):Bitmap?{
    return try{
        val stream = assets.open(fileName)
        BitmapFactory.decodeStream(stream)
    }catch (e:IOException){
        e.printStackTrace()
        null
    }
}


// Method to save an bitmap to a file
private fun bitmapToFile(bitmap:Bitmap): Uri {
    // Get the context wrapper
    val wrapper = ContextWrapper(applicationContext)

    // Initialize a new file instance to save bitmap object
    var file = wrapper.getDir("Images",Context.MODE_PRIVATE)
    file = File(file,"${UUID.randomUUID()}.jpg")

    try{
        // Compress the bitmap and save in jpg format
        val stream:OutputStream = FileOutputStream(file)
        bitmap.compress(Bitmap.CompressFormat.JPEG,100,stream)
        stream.flush()
        stream.close()
    }catch (e:IOException){
        e.printStackTrace()
    }

    // Return the saved bitmap uri
    return Uri.parse(file.absolutePath)
}

}

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