CGImage 在 CALayer 中被拉伸
我有一个 CGImage 对象的 NSMutableArray。所有图像都有不同的尺寸(80x20 px、200x200 px、10x10 px 等...) 我正在尝试在 CALayer 中对这些进行动画处理,其大小为 256x256 像素。动画有效,但我的 CGImage 被拉伸到 CALayer 的尺寸。如何防止我的 CGImage 被缩放?
谢谢。
I have an NSMutableArray of CGImage objects. All the images have different dimensions ( 80x20 px, 200x200 px, 10x10 px, etc...)
I'm trying to animate these in CALayer which has 256x256 pixels size. The animation works, but my CGImages get stretched to the dimensions of the CALayer. How could I prevent my CGImages from getting scaled?
thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
回答我自己的问题。我必须将图层的 contentGravity 属性设置为 kCAGravityCenter,这样就成功了。 contentGravity 的默认值是 kCAGravityResize ,它使物体拉伸以填充图层的边界。
To answer my own question. I had to set my layer's contentsGravity property to kCAGravityCenter and that did the trick. The default value of contentsGravity is kCAGravityResize which makes things stretched to fill in layer's bounds.