Inspired by a comment during an SL21B Town Hall interview:
key llGetProfilePicture(key uuid);
Displaying a user's profile picture has a multitude of valid uses, from simple visitor counters, to "Am I Online?" displays in stores, game scoreboards, fun little ID badges, and so on. We've been doing this for ages.. easily a decade or more at this point.. and yet displaying a user's current profile picture is
far
from trivial.
The current approach goes something like this.
  1. Get the user's UUID.
  2. Point a web call to
    https://world.secondlife.com/resident/ + (string)UUID
  3. Then we sit, and wait, and hope today isn't the day that LL finally shuts off world.secondlife.com, and we pray it's online at the moment.
  4. Assuming we get back a valid page response, we scrub through the small fragment of HTML that the script managed to capture, then we look for
    <img alt=\"profile image\" src=\"https://secondlife.com/app/image/
  5. Then we pull out everything before that, and the first 36 characters left SHOULD be the UUID for the user's current profile picture.
There has to be a more elegant way to do this.
llGetProfilePicture could work much the same as llGetUsername or llGetDisplayName, feed the user's UUID in, and get a response that's immediately usable... resulting in less http overhead, and less reliance on a profile and group service (world.secondlife.com) that is not really being supported.
Other uses:
* Objects: sending it an object's UUID (or other inventory asset) could return it's set 'inventory image', if one exists
* Groups: sending it the UUID of a group could return the group's Image
* Land: sending it the UUID of a parcel of land could return the land's "Place Profile" image.