ios – 在UIImage周围添加透明空间

ios – 在UIImage周围添加透明空间,第1张

概述让我们说,我们有一个600X400的图像,我们想要一个1000X100的新图像,其中包含初始图像在中心和周围的透明空间.如何在代码中实现? 您创建一个1000×1000的新图像上下文,在中间绘制您的旧图像,然后从上下文获取新的UI Image. // Setup a new context with the correct sizeCGFloat width = 1000;CGFloat he 让我们说,我们有一个600X400的图像,我们想要一个1000X100的新图像,其中包含初始图像在中心和周围的透明空间.如何在代码中实现?解决方法 您创建一个1000×1000的新图像上下文,在中间绘制您的旧图像,然后从上下文获取新的UI Image.
// Setup a new context with the correct sizeCGfloat wIDth = 1000;CGfloat height = 1000;UIGraphicsBeginImageContextWithOptions(CGSizeMake(wIDth,height),NO,0.0);        CGContextRef context = UIGraphicsGetCurrentContext();       UIGraphicsPushContext(context);                             // Now we can draw anything we want into this new context.CGPoint origin = CGPointMake((wIDth - oldImage.size.wIDth) / 2.0f,(height - oldImage.size.height) / 2.0f);[oldImage drawAtPoint:origin];// Clean up and get the new image.UIGraphicsPopContext();                             UIImage *newImage = UIGraphicsGetimageFromCurrentimageContext();UIGraphicsEndImageContext();
总结

以上是内存溢出为你收集整理的ios – 在UIImage周围添加透明空间全部内容,希望文章能够帮你解决ios – 在UIImage周围添加透明空间所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存