How to programmatically get a contact's picture in Outlook 2010?

6.4k Views Asked by At

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

Thanks!

2

There are 2 best solutions below

0
On

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

0
On

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);