Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想设置自定义坐标来裁剪视频。但我不知道如何在其中设置 x 和 y 值或如何在函数中传递值
CGAffineTransformMake(CGFloat a, CGFloat b, CGFloat c, CGFloat d, CGFloat tx, CGFloat ty)
我到处搜索,但每个人都说它在后台创建了一个矩阵,但我与矩阵无关,我只是想设置值,X and Y. 任何人都可以通过示例建议我正确的解释。这将是一个很棒的帮助我。提前致谢
X and Y.
你可以这样试试。
CGAffineTransform transform = CGAffineTransformMakeScale(give what scale you want,give what scale you want)
希望能帮助到你。