如何以编程方式在 Outlook 2010 中获取联系人图片?

发布于 2024-10-16 08:04:24 字数 49 浏览 6 评论 0原文

如何从 Outlook 获取联系人的图片并将其保存到文件中?

谢谢!

How can you get a contact's picture from Outlook and save it to a file?

Thanks!

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

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

发布评论

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

评论(2

缱绻入梦 2024-10-23 08:04:25

根据您的使用案例,如果您尝试从 Outlook 配置文件中获取他们的图片,您可能需要尝试 Graph API。

文档此处

Depending on your use case, if you are trying to grab their picture from their Outlook profile you might want to try Graph API.

Documentation here

何以心动 2024-10-23 08:04:24

这里的其他答案都很好,但还有一个替代方案:

附件.GetTemporaryFilePath 方法 (Outlook)

Attachment.SaveAsFile 方法 (Outlook)

检索路径。

var attachment = contact.Attachments["ContactPicture.jpg"] as Attachment;
var path = attachment.GetTemporaryFilePath();

保存文件。

var attachment = contact.Attachments["ContactPicture.jpg"] as Attachment;
var path = attachment.SaveAsFile(savePath);

The other answers here are good, but there's also an alternative:

Attachment.GetTemporaryFilePath Method (Outlook)

Attachment.SaveAsFile Method (Outlook)

To retrieve the path.

var attachment = contact.Attachments["ContactPicture.jpg"] as Attachment;
var path = attachment.GetTemporaryFilePath();

To save the file.

var attachment = contact.Attachments["ContactPicture.jpg"] as Attachment;
var path = attachment.SaveAsFile(savePath);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文