.net maui blazor -显示来自android内部存储的图像

hfyxw5xn  于 2024-01-04  发布在  Android
关注(0)|答案(3)|浏览(150)

我使用.net毛伊岛blazor让设备拍照,然后作为其采取了它,我希望显示在屏幕上,使用户可以看到他们刚刚采取的图像。
我在MS文档上找到了如何使用var photo = await MediaPicker.CapturePhotoAsync();拍照
然后它给出了一种简单的方法,将其存储到设备的该高速缓存中,使用:

  1. async Task LoadPhotoAsync(FileResult photo)
  2. {
  3. // canceled
  4. if (photo == null)
  5. {
  6. PhotoPath = null;
  7. return;
  8. }
  9. // save the file into local storage
  10. var newFile = Path.Combine(FileSystem.CacheDirectory, photo.FileName);
  11. using (var stream = await photo.OpenReadAsync())
  12. using (var newStream = File.OpenWrite(newFile))
  13. await stream.CopyToAsync(newStream);
  14. PhotoPath = newFile;
  15. }

字符串
我理解,它生成文件路径,使用保存蒸汽的FileResult基类,然后创建并将其转储到设备上。
然而,我的问题来自试图在html中显示该图像的形式。
我看到一个Stackoverflow建议使用

  1. myImg.Source = PhotoPath;//Show on the front page


但我相信这只适用于.net毛伊岛,
与blazor和HTML元素,我希望它使用的
我目前将字符串存储在PhotoPath中,然后从HTML元素调用它,

  1. <img src="@PhotoPath" ...>


但它只是想出了“图像未找到”图标,我不确定我是否必须设置一个阅读器进去,并抓住该图像,然后显示它虽然字节。
谢谢

omhiaaxx

omhiaaxx1#

  1. <button class="btn btn-primary mb-3" @onclick="@(() => TakePhoto())">Take Photo</button>
  2. @if (!string.IsNullOrEmpty(PhotoPath))
  3. {
  4. <img width="320" height="320" src="@PhotoPath" />
  5. }
  6. @code
  7. {
  8. private string PhotoPath;
  9. private string localFilePath = "";
  10. public async void TakePhoto()
  11. {
  12. if (MediaPicker.Default.IsCaptureSupported)
  13. {
  14. FileResult photo = await MediaPicker.Default.CapturePhotoAsync();
  15. if (photo == null)
  16. {
  17. //PhotoPath = null;
  18. return;
  19. }
  20. localFilePath = Path.Combine(FileSystem.CacheDirectory, photo.FileName);
  21. using Stream sourceStream = await photo.OpenReadAsync();
  22. using FileStream localFileStream = File.OpenWrite(localFilePath);
  23. await sourceStream.CopyToAsync(localFileStream);
  24. //additional
  25. sourceStream.Dispose();
  26. localFileStream.Dispose();
  27. var imageBytes = File.ReadAllBytes(localFilePath);
  28. PhotoPath = Convert.ToBase64String(imageBytes);
  29. PhotoPath = string.Format("data:image/png;base64,{0}", PhotoPath);
  30. StateHasChanged();
  31. }
  32. }
  33. }

字符串

展开查看全部
a2mppw5e

a2mppw5e2#

您可以创建一个variable并在存储照片后分配值。
与本Map像不同,我们需要将数据转换为字节Base64 string并指定其格式,以便正确显示。

示例代码

  1. @if (imageSource is not null)
  2. {
  3. <div>
  4. <img src="@imageSource" width="200" height="200" />
  5. </div>
  6. }
  7. @code {
  8. private string? imageSource;
  9. protected override void OnInitialized()
  10. {
  11. var newFile = filePath;
  12. var imageBytes = File.ReadAllBytes(newFile);
  13. imageSource = Convert.ToBase64String(imageBytes);
  14. imageSource = string.Format("data:image/png;base64,{0}", imageSource);
  15. }
  16. }

字符串

展开查看全部
jgwigjjp

jgwigjjp3#

如果你正在寻找.net毛伊岛和到达这里像我比它可能会帮助你..

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

字符串
imgFoto.Source = Path.合并(sGpath,photo.FileName);
这是需要更改的值

展开查看全部

相关问题