'Exchange rate', 'ru' => 'Курс валют']; $title = $titles[$lang]; $titleFontSize = 7; $box = imagettfbbox($titleFontSize, 0, $boldFontPath, $title); $titleWidth = $box[2] - $box[0]; $titleX = ($width - $titleWidth) / 2; imagettftext($image, $titleFontSize, 0, $titleX, 9, $textWhite, $boldFontPath, $title); $textFontSize = 7; imagettftext($image, $textFontSize, 0, 4, 20, $text, $fontPath, "$from: $value $to"); imagepng($image, $cacheFile); imagepng($image); imagedestroy($image); ?>