作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的 xamarin 表单应用程序中,我有一个页面,其中有一个小的相机 View ,我想从该相机 View 中拍照。
如果我想完全导航到新页面并拍照,我知道可以使用像 this 这样的插件来完成。
await CrossMedia.Current.TakePhotoAsync(new Plugin.Media.Abstractions.StoreCameraMediaOptions
{
Directory = "Test",
SaveToAlbum = true,
CompressionQuality = 75,
CustomPhotoSize = 50,
PhotoSize = PhotoSize.MaxWidthHeight,
MaxWidthHeight = 2000,
DefaultCamera = CameraDevice.Front
});
最佳答案
要捕获图像,您必须将其返回到一个变量,如下所示:
var file = await CrossMedia.Current.TakePhotoAsync(new Plugin.Media.Abstractions.StoreCameraMediaOptions
{
Directory = "Test",
SaveToAlbum = true,
CompressionQuality = 75,
CustomPhotoSize = 50,
PhotoSize = PhotoSize.MaxWidthHeight,
MaxWidthHeight = 2000,
DefaultCamera = CameraDevice.Front
});
image1.Source = file.Path;
关于Xamarin 表单 : How to take picture?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50867216/
我是一名优秀的程序员,十分优秀!