使用相机在MAUI Android中拍摄并保存照片

nr7wwzry  于 2024-01-04  发布在  Android
关注(0)|答案(2)|浏览(434)

在MAUI(.NET7)(仅限Android)中,我希望能够打开相机应用程序,拍摄照片,并将照片保存在画廊可以打开的位置。似乎很简单,但我似乎无法让它工作。
下面的代码打开相机,并将图像保存到AppDataDirectory或CacheDirectory(取决于执行哪一行)。然而,这两个目录似乎对Gallery应用程序都不可见。

  1. if (MediaPicker.Default.IsCaptureSupported)
  2. {
  3. FileResult photo = await MediaPicker.Default.CapturePhotoAsync();
  4. if (photo != null)
  5. {
  6. //string localFilePath = Path.Combine(FileSystem.CacheDirectory, photo.FileName);
  7. string localFilePath = Path.Combine(FileSystem.AppDataDirectory, photo.FileName);
  8. using Stream sourceStream = await photo.OpenReadAsync();
  9. using FileStream localFileStream = System.IO.File.OpenWrite(localFilePath);
  10. await sourceStream.CopyToAsync(localFileStream);
  11. }
  12. }

字符串
我试过Media Plugin Nuget。这确实保存了文件,但由于某种原因保存了两次,两个创建的文件中有一个损坏了。(我认为这在github中有问题)。它也不再被维护,所以如果可能的话我宁愿不使用它。
有谁知道我在毛伊岛怎么做吗?谢谢。

hzbexzde

hzbexzde1#

  1. var foto = await MediaPicker.CapturePhotoAsync();
  2. if (foto != null)
  3. {
  4. var memoriaStream = await foto.OpenReadAsync();
  5. imgFoto.Source = ImageSource.FromStream(() => memoriaStream);
  6. string localFilePath = Path.Combine(FileSystem.CacheDirectory,foto.FileName);
  7. using Stream source = await foto.OpenReadAsync();
  8. using FileStream localFile = File.OpenWrite(localFilePath);
  9. await source.CopyToAsync(localFile);
  10. localFile.Close();
  11. using (var stream = File.OpenRead(localFilePath))
  12. {
  13. // Get the byte array of the image.
  14. byte[] imageBytes = new byte[stream.Length];
  15. stream.Read(imageBytes, 0, imageBytes.Length);
  16. using (var db = new DemoDbContext())
  17. {
  18. var imageItem = new Fotos
  19. {
  20. Imagen = imageBytes
  21. };
  22. db.Fotos.Add(imageItem);
  23. db.SaveChanges();
  24. }
  25. }
  26. await DisplayAlert("Mensaje", "Fotografia de Paciente Almacenada", "Cancelar");
  27. }

字符串

展开查看全部
q5iwbnjs

q5iwbnjs2#

如果您使用的是Android比不要忘记添加此权限。

  1. <uses-permission android:name="android.permission.CAMERA" />
  2. <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32" />
  3. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="32" />
  4. <uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />

字符串
这里我定义了正确的文件路径为保存&打开图像

  1. string sGpath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
  2. string localFilePath = Path.Combine(sGpath, photo.FileName);


这里你如何打开保存的图像是..

  1. string ReadFilePath = Path.Combine(sGpath, photo.FileName);
  2. imgFoto.Source = Path.Combine(sGpath, photo.FileName);


你可以在这里看到

  1. <Image
  2. x:Name="imgFoto"
  3. HorizontalOptions="Center"/>


这里是完整的Xaml.cs代码..

  1. if (MediaPicker.Default.IsCaptureSupported)
  2. {
  3. FileResult photo = await MediaPicker.Default.CapturePhotoAsync();
  4. if (photo != null)
  5. {
  6. string sGpath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
  7. // save the file into local storage
  8. string localFilePath = Path.Combine(sGpath, photo.FileName);
  9. using Stream sourceStream = await photo.OpenReadAsync();
  10. using FileStream localFileStream = File.OpenWrite(localFilePath);
  11. await sourceStream.CopyToAsync(localFileStream);
  12. // Open the file into local storage
  13. string ReadFilePath = Path.Combine(sGpath, photo.FileName);
  14. imgFoto.Source = Path.Combine(sGpath, photo.FileName);
  15. }
  16. }

展开查看全部

相关问题