首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

创建纯色UIImage并在顶部添加文本(Swift)

在Swift中创建纯色UIImage并在顶部添加文本,可以按照以下步骤进行:

  1. 首先,导入UIKit框架:import UIKit
  2. 创建一个函数,用于生成纯色UIImage并添加文本:func createImageWithText(text: String, color: UIColor, imageSize: CGSize, textFont: UIFont) -> UIImage? { // 创建一个基于位图的上下文 UIGraphicsBeginImageContextWithOptions(imageSize, false, 0) // 设置填充颜色 color.setFill() // 绘制一个矩形填充整个图像 UIRectFill(CGRect(origin: CGPoint.zero, size: imageSize)) // 设置文本属性 let textAttributes = [ NSAttributedString.Key.font: textFont, NSAttributedString.Key.foregroundColor: UIColor.white ] // 计算文本的大小 let textSize = text.size(withAttributes: textAttributes) // 计算文本的位置 let textX = (imageSize.width - textSize.width) / 2 let textY = (imageSize.height - textSize.height) / 2 // 将文本绘制到图像上下文中 text.draw(at: CGPoint(x: textX, y: textY), withAttributes: textAttributes) // 从图像上下文中获取图像 let image = UIGraphicsGetImageFromCurrentImageContext() // 结束图像上下文 UIGraphicsEndImageContext() return image }
  3. 调用函数创建纯色UIImage并添加文本:let imageSize = CGSize(width: 200, height: 200) let text = "Hello, World!" let color = UIColor.red let textFont = UIFont.boldSystemFont(ofSize: 20) let image = createImageWithText(text: text, color: color, imageSize: imageSize, textFont: textFont)

这样就可以创建一个纯色的UIImage,并在顶部添加指定文本。你可以根据需要调整图像大小、文本内容、颜色和字体等参数。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

  • IOS 图文新闻文章样式

    //在实现图文混排的功能之前,首先往项目中添加一个继承自UIView 父类的子类CTImageView.swift。使用该类的draw方法,并在该方法中使 用Core Text框架渲染富文本, 1 let picWidth = CGFloat(200.0) 2 let picHeight = CGFloat(133.0) 3 UIColor.brown.setFill() 4 UIRectFill(rect) 5 var ctRunCallback = CTRunDelegateCallbacks(version: kCTRunDelegateVersion1, dealloc: { (refCon) -> Void in 6 }, getAscent:{ ( refCon) -> CGFloat in 7 return picHeight 8 }, getDescent:{ (refCon) -> CGFloat in 9 return 0 10 }) { (refCon) -> CGFloat in 11 return picWidth 12 } 13 var picture = “coffee “ 14 let ctRunDelegate = CTRunDelegateCreate(&ctRunCallback, &picture) 15 let placeHolder = NSMutableAttributedString(string:” “) 16 placeHolder.addAttribute(kCTRunDelegateAttributeName as String, value:ctRunDelegate!, range: NSMakeRange(0, 1)) 17 placeHolder.addAttribute(“pictureName”, value: picture, range:NSMakeRange(0, 1)) 18 let article = “咖啡(coffee)是采用经过烘焙的咖啡豆所 制作出来\n\n的饮料,通常为热饮,但也有 作为冷饮的冰咖啡。 咖啡是人类社会流行范围最为广泛的饮料之一,也是重要经济作 物。在繁忙的工作生活 之余,我们可以去尝试做自己的咖啡。” 19 let attributedStr = NSMutableAttributedString(string: article) 20 attributedStr.insert(placeHolder, at:27) 21 attributedStr.addAttribute(kCTUnderlineStyleAttributeName as String, value:NSNumber(value:1), range: NSRange(location:0, length:attributedStr.length)) 22 let framesetter = CTFramesetterCreateWithAttributedString(attributedStr) 23 let path = UIBezierPath(rect:rect) 24 let ctFrame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, attributedStr.length), path.cgPath, nil) 25 26 let crtContext = UIGraphicsGetCurrentContext() 27 crtContext!.textMatrix = CGAffineTransform.identity 28 crtContext?.scaleBy(x:1.0, y:-1.0) 29 crtContext?.translateBy(x:0, y: self.bounds.size.height * -1) 30 CTFrameDraw(ctFrame, crtContext!) 31 let ctLines = CTFrameGetLines(ctFrame) as NSArray 32 var originsOfLines = CGPoint 33 for _ in 0..<ctLines.count{ 34 originsOfLines.append(CGPoint.zero) 35 } 36 let range:CFRange = CFRangeMake(0, 0) 37 CTFrameGetLineOrigins(ctFrame, range, &originsOfLines) 38 for i in 0..<ctLines.co

    02
    领券