- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在我的表单应用程序中使用 Xam.Plugin.Media 来拍照。我获取图像流 (GetStream) 并转换为 byte[] 并存储在我的数据库中。然后我将其用作图像源。在 Android 和 UWP 上,它工作正常。在 iOS 上,如果照片是在纵向模式下拍摄的,一旦选择图像,图像将始终旋转 90 度。稍后我会将其上传到服务器,该图像可以在不同的设备上使用。为此,我还尝试了 GetStreamWithImageRotatedForExternalStorage 但在这种情况下,我根本看不到图像。流中有字节(我 DisplayAlert 的长度)但图像不显示。
知道我可能做错了什么吗?
我的代码:-
private async Task TakePicture(WineDetails details)
{
await CrossMedia.Current.Initialize();
if (CrossMedia.Current.IsCameraAvailable && CrossMedia.Current.IsTakePhotoSupported)
{
var file = await CrossMedia.Current.TakePhotoAsync(new Plugin.Media.Abstractions.StoreCameraMediaOptions
{
AllowCropping = true,
PhotoSize = Plugin.Media.Abstractions.PhotoSize.Medium,
SaveToAlbum = false,
RotateImage = true
});
if (file == null)
return;
using (var ms = new MemoryStream())
{
var stream = file.GetStreamWithImageRotatedForExternalStorage();
stream.CopyTo(ms);
details.LabelImage = ms.ToArray();
details.NotifyChange("ImageSource");
}
}
}
图像通过 NotifyChange 在页面中更新,看起来像这样:-ImageSource.FromStream(() => new MemoryStream(this.LabelImage))
这在 Android 和 UWP 上的所有情况下都工作正常,在 iOS 上使用 GetStream 工作(除了图像旋转不正确)但在 iOS 上使用 GetStreamWithImageRotatedForExternalStorage 时不起作用。
还有其他人在使用这个插件吗?知道为什么 GetStream 返回旋转的图像吗?知道为什么 GetStreamWithImageRotatedForExternalStorage 不起作用吗?
谢谢
更新:-
更改了 SaveToAlbum = true,当我打开画廊时,图像旋转了 90 度。有 RotateImage = true 这可能会导致问题吗?我会尝试将其设置为 false。我仍然无法使用 GetStreamWithImageRotatedForExternalStorage 将图像源设置为图像的字节数组。
using (var ms = new MemoryStream())
{
file.GetStreamWithImageRotatedForExternalStorage().CopyTo(ms);
details.LabelImage = ms.ToArray();
}
使用图像的字节数组
return ImageSource.FromStream(() => new MemoryStream(this.LabelImage));
这对我不起作用,GetStream 工作正常。
更新:-
好的,RotateImage = false + GetStreamWithImageRotatedForExternalStorage 允许我显示图像,但它在我的应用程序和图库中仍然错误地旋转。
最佳答案
我正在使用 this插件,它是相似的(如果不是同一件事——我知道 James Montemagno 最近将他的作品与 Xamarin 打包/捆绑在一起)。
如果您查看那里的问题板,您会发现有相当多的人有类似的问题(iOS 上的图像旋转)。几乎每个“解决方案”都提到使用 GetStreamWithImageRotatedForExternalStorage
。
我的问题类似 - 我无法在没有其他(非 iOS 设备)旋转图像的情况下以纵向模式在 iOS 上拍照。我已经尝试了数周来解决这个问题,但对该插件的支持似乎非常有限。
最终我不得不通过一个巨大的解决方法来解决这个问题——使用从FFImageLoading扩展的自定义渲染器。显示我们的图像和MetadataExtractor .然后,我们能够从流中提取 EXIF 数据,并对 FFImageLoding 图像控件应用旋转变换。
旋转信息以一种奇怪的方式存储为字符串。这是我用来提取旋转信息的方法,并将需要旋转的量作为 int 返回。请注意,对我来说,iOS 仍然能够正确显示图像,因此它只返回了 Android 设备的旋转变化。
public static int GetImageRotationCorrection(byte[] image)
{
try
{
var directories = ImageMetadataReader.ReadMetadata(new MemoryStream(image));
if (Device.Android == "Android")
{
foreach (var directory in directories)
{
foreach (var tag in directory.Tags)
{
if (tag.Name == "Orientation")
{
if (tag.Description == "Top, left side(Horizontal / normal)")
return 0;
else if (tag.Description == "Left side, bottom (Rotate 270 CW)")
return 270;
else if (tag.Description == "Right side, top (Rotate 90 CW")
return 90;
}
}
}
}
return 0;
}
catch (Exception ex)
{
return 0;
}
}
请注意,还有一个用于 FFImage 加载的图像的自定义渲染器。
public class RotatedImage : CachedImage
{
public static BindableProperty MyRotationProperty = BindableProperty.Create(nameof(MyRotation), typeof(int), typeof(RotatedImage), 0, propertyChanged: UpdateRotation);
public int MyRotation
{
get { return (int)GetValue(MyRotationProperty); }
set { SetValue(MyRotationProperty, value); }
}
private static void UpdateRotation(BindableObject bindable, object oldRotation, object newRotation)
{
var _oldRotation = (int)oldRotation;
var _newRotation = (int)newRotation;
if (!_oldRotation.Equals(_newRotation))
{
var view = (RotatedImage)bindable;
var transformations = new System.Collections.Generic.List<ITransformation>() {
new RotateTransformation(_newRotation)
};
view.Transformations = transformations;
}
}
}
因此,在我的 XAML 中 - 我声明了一个 RotatedImage 而不是标准图像。使用自定义渲染器,我能够做到这一点并使图像显示旋转正确的量。
image.MyRotation = GetImageRotationCorrection(imageAsBytes)
这是一个完全不必要的解决方法 - 但这些是我为解决此问题所必须付出的努力。
我肯定会继续回答这个问题,社区中可能有人可以帮助我们!
关于ios - Xamarin.Forms Xam.Plugin.Media 在 iOS 上拍照,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51200013/
尝试熟悉 Maven 并参加在线类(class),但陷入困境......感谢提供的任何帮助。 我正在运行站点阶段,虽然它已完成并且我能够在浏览器中实际查看index.html,但我在此过程中遇到了很多
基本上就是标题。。我在任何地方都找不到一个简单的比较,来解释这两者之间的差异:。我知道Gradle中可以有3种类型的插件:。我认为这三种类型的插件在某种程度上与它们可以在settings.gradle
我是 maven 的初学者,现在我对这些 maven 插件之间的区别感到困惑。这些都是创建jar文件吗?现在我的问题是 各个插件创建的jar有什么区别。(组装插件、jar-plugin、shaded插
我使用 tycho-packaging-plugin 来设置 jar 的输出文件夹。这是我的 pom 的缩短版本: 0.21.0 org.eclipse.
When starting the server, refuses to load my plugin with an error:启动服务器时,拒绝加载我的插件,并出现错误: Could n
为什么卸载以下(空)插件会导致错误? 这是my-plugin/my-plugin.php : : my-plugin 关于wordpress - 由于错误 : Could not fully remo
我使用 sbt 与 playframework 和 activator 来构建一个 Web 应用程序。我的 sbt 版本是 0.13.0 我将plugin.sbt 文件更改为: logLevel :=
这是我运行 atlas-create-jira-plugin 时得到的结果后跟 atlas-create-jira-plugin-module选择选项1: Component Import . 问题是
我正在尝试使用 Maven 构建我的 Java 项目,但它失败了,并且出现以下错误: 从存储库 [local (C:\Users\Vinita.Gupta.m2\repository), centra
我正在使用 eclipse mars-2。我想在 Windows 中创建一个新的 Maven Spring Boot 项目。但我遇到了类似 的错误 Could not calculate build
最近开发的产品,我们是有四五个maven模块,开发阶段一直是在eclipse中运行的,然后快发版的时候,需要把这些项目打成jar包,通过命令去启动,那首先就得把这些模块项目打包,或者拷贝一些资源文件等
我想使用 maven-resources-plugin 复制 Excel 并使用 exec-maven-plugin 从该 Excel 创建一些属性文件。并且新创建的属性需要附加到构建中。我可以创建属
当我尝试构建项目时出现此错误。 Errors occurred during the build. Errors running builder 'Maven Project Builder' on
当我在执行 Maven 时从 eclipse 内部 -> 更新项目我遇到以下问题 Unable to update Maven configuration Could not calculate bu
我之前问过一个关于延迟处理事件的问题:Grails non time based queuing .我开始使用 rabbitmq 插件:http://grails.org/plugin/rabbitm
我正在尝试使用 maven 构建一个 java spring 项目(来自 heroku 入门指南的默认项目)。出于某种原因,我不断收到以下错误。机器上网应该没有问题。 Failed to execut
操作系统:OSX 10.11 Cordova :5.4.1(也尝试过 6.0)节点:4.2.6使用的cordova插件:crosswalk-project/cordova-plugin-crosswa
org.sonatype.maven.plugin :emma-maven-plugin:1.2 org.codehaus.mojo :emma-maven-plugin:1.0-alpha-3 or
我正在管理安装了很多插件的多个 shopware 6 商店。后端只允许更新一个插件,这非常耗时,因为更新分两步完成: 更新已加载(加载器圈) 后端已重新加载(html 重新加载) 为什么没有“更新所有
我正在管理安装了很多插件的多个 shopware 6 商店。后端只允许更新一个插件,这非常耗时,因为更新分两步完成: 更新已加载(加载器圈) 后端已重新加载(html 重新加载) 为什么没有“更新所有
我是一名优秀的程序员,十分优秀!