• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

User image in custom output

AlxNzx

Member
I've done quite a few searches but have not been able to figure out how to get users' characters images into my custom output.

I'm looking for either a file to refer to, or better yet, a base64 binary string for every picture.

Is that possible and how can I manage that ?

Thanks in advance.
 
Have you looked at the output sheets for pathfinder? Somewhere in their template it probably makes a reference to the data field which will pick the portrait picture out of the HL database.
 
Duh, of course. Thanks Farling.

<xsl:template match="image">
<img class="portrait">
<xsl:attribute name="src"><xsl:value-of select="@filename"/></xsl:attribute>
</img>
</xsl:template>
 
Back
Top