ios - 如何通过 Swift 在拍摄的照片上插入文字?

标签 ios swift xcode core-graphics

我正在 Xcode 上制作相机应用。我制作了“照片库”和“相机”选项以将照片插入屏幕。之后我只想在图片上写文字。文本可以来自用户,就像使用教科书一样。所以基本上我需要在图片上添加文本,例如日期戳。

我没有找到这方面的任何示例,因此它会对开发人员有所帮助。希望达到目标。

这是我的屏幕:

enter image description here

这是我的代码:

import UIKit

class ViewController: UIViewController, UIImagePickerControllerDelegate, UINavigationControllerDelegate {

@IBOutlet weak var PhotoLibrary: UIButton!
@IBOutlet weak var Camera: UIButton!        
@IBOutlet weak var ImageDisplay: UIImageView!    

override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

@IBAction func PhotoLibraryAction(sender: UIButton) {

    let picker = UIImagePickerController()
    picker.delegate = self
    picker.sourceType = .PhotoLibrary        
    presentViewController(picker, animated: true, completion: nil)
}

@IBAction func CameraActıon(sender: UIButton) {

    let picker = UIImagePickerController()
    picker.delegate = self
    picker.sourceType = .Camera        
    presentViewController(picker, animated: true, completion: nil)
}

func imagePickerController(picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : AnyObject]) {
    ImageDisplay.image = info[UIImagePickerControllerOriginalImage] as? UIImage;
    dismissViewControllerAnimated(true, completion: nil)
}

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

    // Setup the font specific variables
    let textColor: UIColor = UIColor.blackColor()
    let textFont: UIFont = UIFont(name: "Helvetica Bold", size: 35)!

    //Setup the image context using the passed image.
    UIGraphicsBeginImageContext(inImage.size)

    //Setups up the font attributes that will be later used to dictate how the text should be drawn
    let textFontAttributes = [
        NSFontAttributeName: textFont,
        NSForegroundColorAttributeName: textColor,
        ]

    //Put the image into a rectangle as large as the original image.
    inImage.drawInRect(CGRectMake(0, 0, inImage.size.width, inImage.size.height))

    // Creating a point within the space that is as bit as the image.
    let rect: CGRect = CGRectMake(atPoint.x, atPoint.y, inImage.size.width, inImage.size.height)

    //Now Draw the text into an image.
    drawText.drawInRect(rect, withAttributes: textFontAttributes)

    // Create a new image out of the images we have created
    let newImage: UIImage = UIGraphicsGetImageFromCurrentImageContext()

    // End the context now that we have the image we need
    UIGraphicsEndImageContext()

    //And pass it back up to the caller.
    return newImage        
    }

if let image = info[UIImagePickerControllerOriginalImage] as? UIImage {
    ImageDisplay.image = textToImage("TextYouWantDraw", inImage: image, atPoint: CGPointMake(10,10))}
}

最佳答案

我想你可以先从照片库中获取图像,然后将其传递给将文本绘制到图像中的函数。

 func imagePickerController(picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : AnyObject]) {

 if let image = info[UIImagePickerControllerOriginalImage] as? UIImage {
    ImageDisplay.image = textToImage("TextYouWantDraw", inImage: image, atPoint: CGPointMake(10,10))
 }

    dismissViewControllerAnimated(true, completion: nil)

}

关于ios - 如何通过 Swift 在拍摄的照片上插入文字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39633729/

相关文章:

iphone - UITableViewCell 上的 UIPopoverController

ios - Apple AppStore 如何对搜索结果进行排名?

ios - 为什么我的 tableView 没有被填充?

json - 如何遍历对象数组并创建一个json对象?

ios - 使用 GCC 时为 "Agreeing to the Xcode/iOS license requires admin privileges, please re-run as root via sudo."

xcode - Storyboard:使用委托(delegate)/协议(protocol)方法关闭 Popover

ios - 在 Xcode 上将基值更改为任意高度和宽度?

ios - 奇怪的\U0000202a 和\U0000202c 字符?

swift - 如何将用户数据传递给

ios - 在 Swift 中迭代 JavaUtilList