[SalesForce] Profile picture in formula field

I'm trying to get the user's profile picture to display in a page layout through the use of a formula field (image function). But I can't find the profile picture in the user object. Is it possible at all to make use of the profile pic this way?

Best Answer

You have to use a Visualforce page to display the pic. Here is an example showing the profile pic on an employee record (custom object).

<apex:page standardController="Employee__c">
    <br />
    <apex:image value="{!Employee__c.user__r.FullPhotoUrl}"/> 
</apex:page>