我想要 Uiimageview 中的图像坐标而不是 UIImageview 坐标。
因为如果我有一个横向模式图像并且我设置了 UIImageview contentmode aspectfit 的属性,它将以纵向模式显示,带有空白并居中。
请告诉我如何获取 UIImageView 中图像的 x,y 坐标。
谢谢
我想要 Uiimageview 中的图像坐标而不是 UIImageview 坐标。
因为如果我有一个横向模式图像并且我设置了 UIImageview contentmode aspectfit 的属性,它将以纵向模式显示,带有空白并居中。
请告诉我如何获取 UIImageView 中图像的 x,y 坐标。
谢谢
UIImage 没有框架,框架用于 UIImageview
尝试UIImage
从您的图像数据或文件创建一个,然后使用 size 属性获取CGSize
表示图像尺寸的结构。请参阅Apple 参考文档。
希望这对你有帮助!