如何在中心绘制文字到uiimage?

时间:2016-11-16 08:06:07

标签: ios swift uiimage

我想将文字售完设置为UIimage中心。但它不在中心。

func textToImage(drawText text: NSString, inImage image: UIImage, atPoint point: CGPoint) -> UIImage {

    let textColor = UIColor.white
    let textFont = UIFont(name: "Helvetica Bold", size: 32)!

    let scale = UIScreen.main.scale
    UIGraphicsBeginImageContextWithOptions(image.size, false, scale)

    let textFontAttributes = [
        NSFontAttributeName: textFont,
        NSForegroundColorAttributeName: textColor,
        ] as [String : Any]

    image.draw(in: CGRect(origin: CGPoint.zero, size: image.size))
    // let rect = CGRect(origin: point , size: image.size)
    let rect = CGRect(origin: CGPoint(x:(image.size.width/2), y: (image.size.height/2)), size: image.size)

    text.draw(in: rect, withAttributes: textFontAttributes)

    let newImage = UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()

    return newImage!
}

来电者功能

 imageViewSoldStatus.image = textToImage(drawText: "Sold out", inImage: UIImage(named:"soldout.png")!, atPoint: CGPoint(x: 5.0, y: 5.0))

我花了很长时间来解决这个问题,但我找不到任何解决方案。

红旗我的形象

enter image description here

以上是我获得的屏幕。下面是我想要实现的设计。

enter image description here

更新

Marie Dm 回答使用了!它是文本对齐中心,但不是图像中心

enter image description here

3 个答案:

答案 0 :(得分:7)

试试这个:

func textToImage(drawText text: NSString, inImage image: UIImage) -> UIImage {
    //draw image first
    UIGraphicsBeginImageContext(image.size)
    image.draw(in: CGRect(x: 0, y: 0, width: image.size.width, height: image.size.height))

    //text attributes
    let font=UIFont(name: "Helvetica-Bold", size: 32)!
    let text_style=NSMutableParagraphStyle()
    text_style.alignment=NSTextAlignment.center
    let text_color=UIColor.white
    let attributes=[NSFontAttributeName:font, NSParagraphStyleAttributeName:text_style, NSForegroundColorAttributeName:text_color]

    //vertically center (depending on font)
    let text_h=font.lineHeight
    let text_y=(image.size.height-text_h)/2
    let text_rect=CGRect(x: 0, y: text_y, width: image.size.width, height: text_h)
    text.draw(in: text_rect.integral, withAttributes: attributes)
    let result=UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()
}

答案 1 :(得分:0)

为 Swift 5 更新

func textToImage(drawText text: NSString, inImage image: UIImage) -> UIImage {
    UIGraphicsBeginImageContext(image.size)
    image.draw(in: CGRect(x: 0, y: 0, width: image.size.width, height: image.size.height))
    let font=UIFont(name: "Helvetica-Bold", size: 14)!
    let text_style=NSMutableParagraphStyle()
    text_style.alignment=NSTextAlignment.center
    let text_color=UIColor.white
    let attributes=[NSAttributedString.Key.font:font, NSAttributedString.Key.paragraphStyle:text_style, NSAttributedString.Key.foregroundColor:text_color]
    let text_h=font.lineHeight
    let text_y=(image.size.height-text_h)/2
    let text_rect=CGRect(x: 0, y: text_y, width: image.size.width, height: text_h)
    text.draw(in: text_rect.integral, withAttributes: attributes)
    let result=UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()
    return result!
}

答案 2 :(得分:-1)

Marie的答案更新为swift 4

b