我正在嘗試使用Windows表面設備拍攝並保存照片。在Windows應用商店中捕獲並保存XAML/C#中的照片
我正在使用下面的代碼來拍攝照片和這項工作,但我想在設備的本地驅動器上自動創建一個目錄,並在沒有任何對話框提示的情況下保存此照片。
所以我用捕捉到照片中的代碼如下:
CameraCaptureUI camera = new CameraCaptureUI();
StorageFile file = await camera.CaptureFileAsync(CameraCaptureUIMode.Photo);
if (file!=null)
{
using (IRandomAccessStream ras=await file.OpenAsync(FileAccessMode.Read))
{
BitmapImage source = new BitmapImage();
source.SetSource(ras);
imageBuildingPhoto.Source = source; // this is just an image control.
}
}
所以在這之後,我想會自動將圖片保存到一個新的目錄。例如
我的圖片\ NewDirectory \ PHOTO1.JPG
任何人有任何想法我怎麼能做到這一點?
這是一個使用C#4.5和XAML編寫的Windows應用商店應用程序。
在此先感謝
卓越的幫助傑裏傑夫。你能幫助另一個問題嗎?看看這篇文章:http://stackoverflow.com/questions/15250726/create-sub-folders-in-my-pictures-from-windows-store-application – Sun 2013-03-06 17:30:56