我是MonoTouch的新用户,我正在尝试发送一封图片作为附件,用户将从相机中驯服或从图库中选择。
我已经创建了程序并且运行正常(我有一个imageview控制器,它将图像从uiimagepicker加载到imageview。然后我调用MFMailComposeViewController
但我不知道如何将图像从imageview传递给{ {1}}方法。
我想首先我必须将imageview中的图像保存为文件,但我不知道该怎么做,我找不到它的文档。
答案 0 :(得分:4)
首先,您需要将UIImage
变成NSData
,例如使用AsPNG
或AsJPG
,然后对图片使用正确的 MIME 类型。这是一个例子:
MFMailComposeViewController email = new MFMailComposeViewController ();
// any UIImage will do
UIImage img = UIImage.FromFile (".../anyimage.png");
email.AddAttachmentData (img.AsPNG (), "image/png", "image.png");
email.SetSubject ("Photo from my iPhone");
email.SetMessageBody ("Here's the attachment!", false);
controller.PresentModalViewController (email, false);
注意:"image.png"
是为收件人电子邮件软件提供的suggested文件名(即,它不是您设备中的本地文件,不需要匹配任何内容存在)。