Advanced Custom Fields Plugin: how would I get an image src path uploaded from User Profile?

Got it working! Here’s what solved my problem:

<?php
$publisher_photo = get_the_author_meta('user_photo');
$image_src = wp_get_attachment_image_src($publisher_photo);
echo '<img class="publisher-picture" src="'. $image_src[0] .'" />';
?>