我正在开发一个应用程序,因为用户可以在图像上写一个标签(文本),并且必须将其保存在带有标签的iphone本地存储中。
(即)用户可以在图像上提供的地方添加任何文本,并且必须将其保存为图像,并在iphone本地存储中写入标签
提前致谢
答案 0 :(得分:1)
你可以将UILabel作为子视图添加到包含UIImage的UIImageView中 然后
UIGraphicsBeginImageContextWithOptions(UIImageView.bounds.size, UIImageView.opaque, 0.0);
[UIImageView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
你得到了你想要的UIImage
或
自己画画
UIGraphicsBeginImageContext(imageSize);
......
CGContextDrawImage(.....);
CGContextShowTextAtPoint(.....);
......
UIGraphicsEndImageContext();
答案 1 :(得分:1)
我认为您需要将您的UIImageView和UILabel添加为特定UIView的子视图(假设我们将此视图称为customView
),然后使用
how to take a screenshot of the iPhone programmatically?
通过修改后的链接回答,让您更容易理解,具体如下:
重要提示:添加QuartzCore Framework
并添加#import<QuartzCore/QuartzCore.h>
CGSize screenSize = [[UIScreen mainScreen] applicationFrame].size; CGColorSpaceRef colorSpaceRef = CGColorSpaceCreateDeviceRGB(); CGContextRef ctx = CGBitmapContextCreate(nil, screenSize.width, screenSize.height, 8, 4*(int)screenSize.width, colorSpaceRef, kCGImageAlphaPremultipliedLast); CGContextTranslateCTM(ctx, 0.0, screenSize.height); CGContextScaleCTM(ctx, 1.0, -1.0); [(CALayer*)customView.layer renderInContext:ctx]; CGImageRef cgImage = CGBitmapContextCreateImage(ctx); UIImage *image = [UIImage imageWithCGImage:cgImage]; CGImageRelease(cgImage); CGContextRelease(ctx); [UIImageJPEGRepresentation(image, 1.0) writeToFile:filePath atomically:NO];
此处 filePath 是应用程序的文档目录文件路径。
您可以使用以下方式获取NSDocuments目录文件路径:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *filePath = [documentsDirectory stringByAppendingPathComponent:@"savedImage.png"];
现在,您可以在要捕获视图的任何按钮或其他控件上执行此代码。
如果您需要更多帮助,请与我联系。
希望这会对你有所帮助。
答案 2 :(得分:0)
您需要捕获整个屏幕的屏幕截图,以便同时拥有一个图像。
Apple文档中的更多信息here