Retrieves a guild icon
<base URL>/guild_icon.php?icon=:icon&size=:size
s
(default) Small guild icon (32x32 pixels) b
Big guild icon (64x64 pixels) It's cached for ever. Since the icon is unique and never changes. For a specific icon, it'll always return the same image.
ryzom_guild_icon_url($icon, $size)
Returns a string that contains the url to display a guild icon.
<?php
require_once "ryzomapi_lite.php";
$url = ryzom_guild_icon_url("4505559206514131", 'b');
echo "<img src=\"$url\" alt=\"\">";