ios – 将UIImage分成两半?

ios – 将UIImage分成两半?,第1张

概述我怎样才能将UI Image分成两半(从中间开始),这样就会产生两个图像? 你可以试试这个, UIImage *image = [UIImage imageNamed:@"yourImage.png"];CGImageRef tmpImgRef = image.CGImage;CGImageRef topImgRef = CGImageCreateWithImageInRect(tmpImgR 我怎样才能将UI Image分成两半(从中间开始),这样就会产生两个图像?解决方法 你可以试试这个,
UIImage *image = [UIImage imagenamed:@"yourImage.png"];CGImageRef tmpimgRef = image.CGImage;CGImageRef topimgRef = CGImageCreateWithImageInRect(tmpimgRef,CGRectMake(0,image.size.wIDth,image.size.height / 2.0));UIImage *topImage = [UIImage imageWithCGImage:topimgRef];CGImageRelease(topimgRef);CGImageRef bottomimgRef = CGImageCreateWithImageInRect(tmpimgRef,image.size.height / 2.0,image.size.height / 2.0));UIImage *bottomImage = [UIImage imageWithCGImage:bottomimgRef];CGImageRelease(bottomimgRef);

希望这可以帮到你,:)

总结

以上是内存溢出为你收集整理的ios – 将UIImage分成两半?全部内容,希望文章能够帮你解决ios – 将UIImage分成两半?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1109040.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存