Converting Text to Image on iOS

后端 未结 4 1930
梦毁少年i
梦毁少年i 2020-12-23 23:38

How to convert Text to Image and show in UIImageview. Can anyone know the conversion from Text to Image?

4条回答
  •  北荒
    北荒 (楼主)
    2020-12-24 00:09

    [yourImageView addSubview:textView]; [canvas addSubview:passingImageView];

    UIGraphicsBeginImageContext(canvas.bounds.size);
    [canvas.layer renderInContext:UIGraphicsGetCurrentContext()];
    
    UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext();
    
    UIGraphicsEndImageContext();
    return resultingImage;
    

    you should take a UIView and inside take UIImageview and the above code should do the trick.Here canvas is UIView.

提交回复
热议问题