- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
似乎当我在纵向模式下使用相机拍照时,UIImage
具有正确的尺寸/长宽比(1536x2048/3:4)和方向(右),导出到一个文件(使用 UIImage.AsPNG().Save()
),它始终以横向模式显示(2048x1536,4:3)。
这是真的吗,还是我做错了什么?有没有解决方法,例如与ALAssetsLibrary.WriteImageToSavedPhotosAlbum
?
更新: 最初我认为 UIImage.SaveToPhotosAlbum()
也会发生这种情况,但仔细检查后,我意识到 UIImage
中的案例不是来自相机的原始案例,而是根据早期 AsPNG()
保存的数据重建的案例。
再次更新:看起来这是 iPhone 相机的一般“功能”,修复它的唯一方法是手动旋转图像。我尝试移植this code到 MT,如下所示,但我似乎所做的是发明一种新方法来创建正确尺寸和长宽比的空白图像。有人能发现这个错误吗?
public static class ImageUtils
{
static float DefaultMaxSize = 960;
public static UIImage ScaleAndRotateImage (UIImage image) {
return ScaleAndRotateImage(image, DefaultMaxSize);
}
public static UIImage ScaleAndRotateImage (UIImage image, float maxSize)
{
CGImage imgRef = image.CGImage;
float width = imgRef.Width;
float height = imgRef.Height;
CGAffineTransform transform = CGAffineTransform.MakeIdentity();
RectangleF bounds = new RectangleF (0, 0, width, height);
if (width > maxSize || height > maxSize) {
float ratio = width / height;
if (ratio > 1) {
bounds.Width = maxSize;
bounds.Height = bounds.Width / ratio;
} else {
bounds.Height = maxSize;
bounds.Width = bounds.Height * ratio;
}
}
float scaleRatio = bounds.Width / width;
SizeF imageSize = new SizeF (imgRef.Width, imgRef.Height);
float boundHeight;
UIImageOrientation orient = image.Orientation;
if (orient == UIImageOrientation.Up) {
//EXIF = 1
transform = CGAffineTransform.MakeIdentity();
} else if (orient == UIImageOrientation.UpMirrored) {
//EXIF = 2
transform = CGAffineTransform.MakeTranslation (imageSize.Width, 0);
transform.Scale (-1.0f, 1.0f);
} else if (orient == UIImageOrientation.Down) {
//EXIF = 3
transform = CGAffineTransform.MakeTranslation (imageSize.Width, imageSize.Height);
transform.Rotate ((float) Math.PI);
} else if (orient == UIImageOrientation.DownMirrored) {
//EXIF = 4
transform = CGAffineTransform.MakeTranslation (0, imageSize.Height);
transform.Scale (1.0f, -1.0f);
} else if (orient == UIImageOrientation.LeftMirrored) {
//EXIF = 5
boundHeight = bounds.Height;
bounds.Height = bounds.Width;
bounds.Width = boundHeight;
transform = CGAffineTransform.MakeTranslation (imageSize.Height, imageSize.Width);
transform.Scale (-1.0f, 1.0f);
transform.Rotate ((float)(3.0f * Math.PI / 2.0));
} else if (orient == UIImageOrientation.Left) {
//EXIF = 6
boundHeight = bounds.Height;
bounds.Height = bounds.Width;
bounds.Width = boundHeight;
transform = CGAffineTransform.MakeTranslation (0, imageSize.Width);
transform.Rotate ((float)(3.0f * Math.PI / 2.0));
} else if (orient == UIImageOrientation.RightMirrored) {
//EXIF = 7
boundHeight = bounds.Height;
bounds.Height = bounds.Width;
bounds.Width = boundHeight;
transform = CGAffineTransform.MakeScale (-1.0f, 1.0f);
transform.Rotate ((float)(Math.PI / 2.0));
} else if (orient == UIImageOrientation.Right) {
//EXIF = 8
boundHeight = bounds.Height;
bounds.Height = bounds.Width;
bounds.Width = boundHeight;
transform = CGAffineTransform.MakeTranslation (imageSize.Height, 0);
transform.Rotate ((float)(Math.PI / 2.0));
} else {
throw new InvalidOperationException ("Invalid image orientation");
}
UIGraphics.BeginImageContext(bounds.Size);
CGContext context = UIGraphics.GetCurrentContext ();
if (orient == UIImageOrientation.Right || orient == UIImageOrientation.Left) {
context.ScaleCTM (-scaleRatio, scaleRatio);
context.TranslateCTM (-height, 0f);
} else {
context.ScaleCTM (scaleRatio, -scaleRatio);
context.TranslateCTM (0f, -height);
}
context.ConcatCTM(transform);
context.DrawImage (new RectangleF(0, 0, width, height), imgRef);
UIImage imageCopy = UIGraphics.GetImageFromCurrentImageContext ();
UIGraphics.EndImageContext ();
return imageCopy;
}
}
最佳答案
我终于让它发挥作用了。这是包含代码的要点:
https://gist.github.com/890460
以及我关于它的博客文章:
http://www.fastchicken.co.nz/2011/03/28/scaling-and-rotating-an-image-in-monotouch/
关于iphone - UIImage 数据始终处于横向模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4739231/
我正在尝试在 IN sql 条件下使用数据库字段。我的字段是一串由逗号分隔的值(如 it,en,fr,de),我必须在 WHERE 子句中使用它,如下所示: WHERE d.iso639code =
他大家 我的以下代码有问题: import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp e
在处理 ReadOnlyMany 存储时,我正在努力理解 PersistentVolume 上的容量参数的概念,以及 PersistentVolumeClaim 上的存储请求。如果存储以只读方式安装
我试图让一个 while 循环在另一个 while 循环中工作,我之前已经让它工作过,但无法再次管理它。 我试图计算航类查询中的总记录,然后在小时记录中尝试添加时间。我已经让所有查询单独工作,但是当我
我们的数据库更新性能偶尔会大幅下降。 例如,表 FooTable 我们有大约 40 列与 varchar PK 此外还有 10 个索引。以下查询用时 44 秒,而在其他时候它几乎立即运行。在减速期间,
我可以在 Release模式下使用 Trace.WriteLine 吗? Trace.Write 和 Debug.Write 之间的主要区别是什么? 最佳答案 不同之处在于 Release模式。 当未
我刚刚遇到了一个非常奇怪的场景,并且在其他地方找不到任何相关信息。当 Xcode 在我的断点处中断时,整个系统的所有键盘输入都没有响应。我可以切换到另一个应用程序,但没有记录任何击键。 Xcode 本
我一直在尝试在一组 Raspberry Pi 上设置 K8s 集群。这是我的 GitHub 页面的链接,描述了整个设置: https://github.com/joesan/plant-infra/b
我的 pod 处于 Pending 状态,因为提到的所有答案我都试图获得描述输出但不知道为什么它保持在 Pending 状态: k8s@k8s-master:~/deployment$ kubectl
我已经开发了一个非消耗性的应用内购买iOS应用程序。我已经获取了应用内购买的 bundle 包标识符,并编写了代码并将其提交给appstore ...提交应用程序后,其状态显示在-App Purcha
我有 2 个具有一对多关系的实体,一个地址可以是多个员工。 MySQL 数据库: 地址 address_id INT PK AutoIncr 城市 VARCHAR 国家/地区 VARCHAR 员工 i
我想在我的项目中使用 ProGuard。我激活了选项 minifyEnabled。当我打开使用库 Retrofit2 的 Activity 时,应用程序崩溃并显示: 无法为接口(interface)
我刚刚在 MVC 应用程序中启用了 Application Insights,并注意到在本地调试时,我的 Azure Application Insight 中会捕获跟踪信息。 处于 Debug模式时
我正在使用一个启动和结束线程的类。线程是在构造函数中创建的。只要标志为 TRUE,线程函数就会继续循环。该标志是该类的静态成员。解构器将标志设置为 FALSE。这样,该类的每个实例都有一个关联的线程,
我有一个 Angular PWA。在我从 Angular 5.0 升级到 7.2 之前,它的 service worker 工作完美 升级后,我在/ngsw/state中看到以下错误 Driver s
可能有一些背景:当用户单击它时,我试图在可滚动的全屏 EditText 上方显示一个特定的键盘 View 。问题是如果光标位于 EditText 的底部,它会被弹出的键盘 View 隐藏。 与常规 I
当进度条处于 Activity 状态时禁用后台交互的正确方法是什么。 Box( modifier = Modifier.fillMaxSize(), contentAlignmen
这个问题在这里已经有了答案: Draw Rectangle inside picture box SizeMode Zoom (1 个回答) 关闭 3 年前。 我有一个 PictureBox1,其
我们刚刚开始在 kubernetes 上创建我们的集群。 现在我们尝试部署分蘖,但出现错误: NetworkPlugin cni failed to set up pod "tiller-deploy
我使用 NRPE 插件将一台 Linux 主机配置为 Nagios 监控服务器。 为此,我遵循以下 URL http://www.tecmint.com/how-to-add-linux-host-t
我是一名优秀的程序员,十分优秀!