从 UILabel 创建 UIImage?

发布于 2024-12-08 00:28:43 字数 498 浏览 0 评论 0原文

我可以使用以下代码从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

べ映画 2024-12-15 00:28:43

在视图控制器中,选择标签,在右侧,您应该能够为标签设置图像。
另外,您可能遇到图层问题... [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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文