保存camera StorageFile文件

Posted 奔跑的蒲公英

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了保存camera StorageFile文件相关的知识,希望对你有一定的参考价值。

        private async void TakeSnapShotButton_Click(object sender, RoutedEventArgs e)
        {
            CameraCaptureUI ccu = new CameraCaptureUI();
            ccu.PhotoSettings.Format = CameraCaptureUIPhotoFormat.Png;
            ccu.PhotoSettings.AllowCropping = false;
            StorageFile photo =await ccu.CaptureFileAsync(CameraCaptureUIMode.Photo);
            if (photo is null)
                return;
            else
            {
                TemporaryPhotoFile = photo;
                BitmapImage bitMapImage = new BitmapImage();
                FileRandomAccessStream fRAS = (FileRandomAccessStream)await photo.OpenAsync(FileAccessMode.Read);
                bitMapImage.SetSource(fRAS);
                yourPhoto.Source = bitMapImage;
 
 
                /// 保存 StorageFile文件到磁盘
                StorageFolder destinationFolder = await ApplicationData.Current.LocalFolder.CreateFolderAsync
                    (yourName.Text,CreationCollisionOption.OpenIfExists);
                await photo.MoveAsync(destinationFolder, "ProfilePhoto.jpg", NameCollisionOption.ReplaceExisting);
                await photo.DeleteAsync();
 
 
            }
        }

  

以上是关于保存camera StorageFile文件的主要内容,如果未能解决你的问题,请参考以下文章

如何在 UWP 视频 StorageFile 中保存 System.Media.DateEncoded

uwp 文件系统上 StorageFile 的唯一标识符

如何设置 UWP C# StorageFile 以将 SoftwareBitmap 存储到特定路径

UWP 文件缩略图保存在 SQL Server 数据库中

写入后 StorageFile 仍然锁定

无法将类型 IAsyncOperation<StorageFile> 隐式转换为 StorageFile