if ($bGD2)
{
if (function_exists("utf8_encode"))
{
$text = $GLOBALS["APPLICATION"]->ConvertCharset($arWaterMark["text"], SITE_CHARSET, "UTF-8");
if ($arWaterMark["use_copyright"] != "N")
$text = utf8_encode("©").$text;
}
else
{
$text = $GLOBALS["APPLICATION"]->ConvertCharset($arWaterMark["text"], SITE_CHARSET, "UTF-8");
if ($arWaterMark["use_copyright"] != "N")
$text = "©".$text;
}
imagettftext($picture, $iSize, 0, $watermark_position["x"], $watermark_position["y"], $text_color, $arWaterMark["path_to_font"], $text);
}
else
{
imagestring($picture, 3, $watermark_position["x"], $watermark_position["y"], $arWaterMark["text"], $text_color);
}
|