如何将 UIImage 插入包含 html 内容的电子邮件中?
我正在通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,将图像转换为 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.