如何将 UIImage 插入包含 html 内容的电子邮件中?

发布于 2024-08-31 03:31:37 字数 139 浏览 7 评论 0原文

我正在通过 MFMailComposeViewController API 发送邮件,并且我设法在附件中添加 uiimages,但我想将我的 uiimage 插入到我的电子邮件中的 html 代码中,知道我应该使用哪种类型的转换吗?图像 ?

谢谢。

I'm sending mails thanks to the MFMailComposeViewController API, and I manage to add uiimages in attachment, but I'd like to insert my uiimage into html code in my e-mail, any idea of what kind of conversion I should use for my image ?

Thanks.

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

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

发布评论

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

评论(1

心如荒岛 2024-09-07 03:31:37

首先,将图像转换为 PNG (UIImagePNGRepresentation) 或 JPEG (UIImageJPEGRepresentation) 数据。

然后,调用 -addAttachmentData:mimeType:fileName: 在邮件撰写视图控制器上使用该 PNG/JPEG 数据。

您的图像将显示为附件。

First, convert the image into PNG (UIImagePNGRepresentation) or JPEG (UIImageJPEGRepresentation) data.

Then, call -addAttachmentData:mimeType:fileName: on the mail compose view controller with that PNG/JPEG data.

Your image will be shown as an attachment.

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