在图像中嵌入 UITextView

发布于 2024-09-17 00:36:23 字数 153 浏览 6 评论 0原文

我有一个 UIImageView 显示我用 iPhone 相机拍摄的照片。 最重要的是,我有一个 UITextView,用户可以在其中键入描述图片的内容。

我想创建两个视图的组合图像并将其发送到服务器。

任何人都知道我该怎么做(只需创建图像。我知道如何发送它)

I have a UIImageView displaying a picture that I took with the iPhone Camera.
On top of that, I have a UITextView in which the user can type stuff that describes the picture.

I would like to create a combined image of the two views and send it to a server.

Anyone knows how I can do that (just creating the image. I know how to send it)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

渡你暖光 2024-09-24 00:36:28

如果 UIImageView 和 UITextView 包含在另一个 UIView 中。或者,如果您可以在同一个 UIView 上创建 UITextView 和 UIImageView,则可以执行此操作。

UIGraphicsBeginImageContext(myView.bounds.size);
[myView.layer renderInContext:UIGraphicsGetCurrentContext()];
viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

其中 myView 等于包含两者的 UIView。

您还可以将每个单独绘制(通过适当设置框架)到 myView 中以完成相同的操作。

If the UIImageView and UITextView are contained in another UIView. Or if you can create a UITextView and UIImageView on the same UIView you can then do this.

UIGraphicsBeginImageContext(myView.bounds.size);
[myView.layer renderInContext:UIGraphicsGetCurrentContext()];
viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

Where myView is equal to the UIView containing the two.

You can also draw each one separately (by setting the frame appropriately) into myView to accomplish the same thing.

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