从 UILabel 创建 UIImage?
我可以使用以下代码从 UIView 创建图像。
然而,相同的代码不会捕获 UILabel 的文本。(但它捕获标签的背景颜色) 如何创建带有文本的 UILabel 图像?
CGSize size = view.bounds.size;
CGContextRef context = CreateARGBBitmapContext(size);
CGContextTranslateCTM(context, 0, size.height);
CGContextScaleCTM(context, 1.0, -1.0);
[view.layer renderInContext: context];
CGImageRef imageRef = CGBitmapContextCreateImage(context);
UIImage* img = [UIImage imageWithCGImage: imageRef];
CGImageRelease(imageRef);
CGContextRelease(context);
I can use the following code to create image from UIView.
However the same code won't capture the text of UILabel.(it captures label's background color though)
How can I create image of UILabel with text?
CGSize size = view.bounds.size;
CGContextRef context = CreateARGBBitmapContext(size);
CGContextTranslateCTM(context, 0, size.height);
CGContextScaleCTM(context, 1.0, -1.0);
[view.layer renderInContext: context];
CGImageRef imageRef = CGBitmapContextCreateImage(context);
UIImage* img = [UIImage imageWithCGImage: imageRef];
CGImageRelease(imageRef);
CGContextRelease(context);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在视图控制器中,选择标签,在右侧,您应该能够为标签设置图像。
另外,您可能遇到图层问题... [self addChild: label z:0 tag:1];
以防万一您不知道,z:0 表示图层。因此 z:-1 的内容将位于 z:0 的图片下方。您只需将文本设置在标签上即可
In the viewcontroller, select the label and on the right side, you should be able to set an image to the label.
Also, you might be having a problem with layers... [self addChild: label z:0 tag:1];
Just in case you don't know, z:0 means the layer. So something with z:-1 would be below a picture with z:0. You could just set the text ontop of the label