第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何將位圖添加到圖庫(kù)中的特定相冊(cè)?

如何將位圖添加到圖庫(kù)中的特定相冊(cè)?

C#
慕標(biāo)琳琳 2022-12-24 12:18:07
我嘗試了很多方法,但都沒(méi)有用。我想創(chuàng)建一個(gè)特定的相冊(cè)并將位圖保存到其中的 JPEG 中。我使用 Xamarin。我該怎么辦?
查看完整描述

2 回答

?
小怪獸愛(ài)吃肉

TA貢獻(xiàn)1852條經(jīng)驗(yàn) 獲得超1個(gè)贊

我寫(xiě)了一個(gè)關(guān)于它的演示。


我將圖片放在資源文件夾中,然后將其讀取為位圖


 btnSelectImage = (Button)FindViewById(Resource.Id.btnSelectImage);

        Bitmap bitmap = BitmapFactory.DecodeResource(this.ApplicationContext.Resources , Resource.Drawable.splashlogo);

        btnSelectImage.Click += (o, e) =>

        {

            saveImageToGally(bitmap, this);

        };

然后將其發(fā)送到圖庫(kù)中的特定相冊(cè)。

http://img1.sycdn.imooc.com//63a67d980001eaa304540840.jpg

有代碼。


public void saveImageToGally(Bitmap finalBitmap,Context context)

    {

        //create a directory called MyCamera

        string root = Environment.GetExternalStoragePublicDirectory(Environment.DirectoryDcim).ToString() + "/MyCamera/";


       //create the Directory

        System.IO.Directory.CreateDirectory(root);


        File myDir = new File(root);

        myDir.Mkdir();

        //Image name

        string fname = "Image-" + "Image1" + ".png";

        File file = new File(myDir, fname);

        Log.Error("FilePath", file.AbsolutePath);


        if (file.Exists()) file.Delete();

        Log.Error("FilePath", root + fname);

        //total path

        string path = root + fname;


        try

        {



            var fs = new System.IO.FileStream(path, System.IO.FileMode.OpenOrCreate);

            if (fs != null)

            {

                finalBitmap.Compress(Bitmap.CompressFormat.Png, 90, fs);

                fs.Close();

            }


        }

        catch (Exception e)

        {

            e.PrintStackTrace();


        }


        MediaScannerConnection.ScanFile(context, new string[] { file.Path }, new string[] { "image/jpeg" }, null);


    }

請(qǐng)不要忘記添加以下權(quán)限。


<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />


查看完整回答
反對(duì) 回復(fù) 2022-12-24
?
繁星淼淼

TA貢獻(xiàn)1775條經(jīng)驗(yàn) 獲得超11個(gè)贊

請(qǐng)注意,您應(yīng)該在運(yùn)行時(shí)授予外部存儲(chǔ)權(quán)限,因?yàn)樗鼈兪顷P(guān)鍵權(quán)限!

您可以在此處閱讀更多內(nèi)容。


查看完整回答
反對(duì) 回復(fù) 2022-12-24
  • 2 回答
  • 0 關(guān)注
  • 126 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)