Skip to content
Extraits de code Groupes Projets
Valider 26e94dda rédigé par ARNO*'s avatar ARNO*
Parcourir les fichiers

Enrichissement image_typo (retour, alt, et classes)

parent 73e7d6de
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -1130,7 +1130,7 @@ function image_typo() { ...@@ -1130,7 +1130,7 @@ function image_typo() {
// Recuperer les differents arguments // Recuperer les differents arguments
$numargs = func_num_args(); $numargs = func_num_args();
$arg_list = func_get_args(); $arg_list = func_get_args();
$text = $arg_list[0]; $texte = $arg_list[0];
for ($i = 1; $i < $numargs; $i++) { for ($i = 1; $i < $numargs; $i++) {
if (ereg("\=", $arg_list[$i])) { if (ereg("\=", $arg_list[$i])) {
$nom_variable = substr($arg_list[$i], 0, strpos($arg_list[$i], "=")); $nom_variable = substr($arg_list[$i], 0, strpos($arg_list[$i], "="));
...@@ -1142,7 +1142,7 @@ function image_typo() { ...@@ -1142,7 +1142,7 @@ function image_typo() {
} }
// Construire requete et nom fichier // Construire requete et nom fichier
$text = ereg_replace("\&nbsp;", "~", $text); $text = ereg_replace("\&nbsp;", "~", $texte);
$taille = $variable["taille"]; $taille = $variable["taille"];
if ($taille < 1) $taille = 16; if ($taille < 1) $taille = 16;
...@@ -1153,6 +1153,8 @@ function image_typo() { ...@@ -1153,6 +1153,8 @@ function image_typo() {
$fond = $variable["fond"]; $fond = $variable["fond"];
if (strlen($fond) < 6) $fond = "ffffff"; if (strlen($fond) < 6) $fond = "ffffff";
$alt = $variable["alt"];
$ombre = $variable["ombre"]; $ombre = $variable["ombre"];
$ombrex = $variable["ombrex"]; $ombrex = $variable["ombrex"];
$ombrey = $variable["ombrey"]; $ombrey = $variable["ombrey"];
...@@ -1161,7 +1163,8 @@ function image_typo() { ...@@ -1161,7 +1163,8 @@ function image_typo() {
$align = $variable["align"]; $align = $variable["align"];
if (!$variable["align"]) $align="left"; if (!$variable["align"]) $align="left";
$retour = $variable["retour"];
$police = $variable["police"]; $police = $variable["police"];
if (strlen($police) < 2) $police = "dustismo.ttf"; if (strlen($police) < 2) $police = "dustismo.ttf";
...@@ -1173,20 +1176,23 @@ function image_typo() { ...@@ -1173,20 +1176,23 @@ function image_typo() {
$string = "$text-$taille-$couleur-$fond-$ombre-$ombrex-$ombrey-$align-$police-$largeur"; $string = "$text-$taille-$couleur-$fond-$ombre-$ombrex-$ombrey-$align-$police-$largeur";
$query = md5($string); $query = md5($string);
$dossier = _DIR_IMG. creer_repertoire(_DIR_IMG, 'cache-texte'); $dossier = _DIR_IMG. creer_repertoire(_DIR_IMG, 'cache-texte');
$fichier = "$dossier/$query.png"; $fichier = "$dossier$query.png";
$flag_gd_typo = function_exists("imageftbbox");
if (!file_exists($fichier)) { if (!file_exists($fichier) AND $flag_gd_typo) {
// Il faut completer avec un vrai _SPIP_PATH, de facon a pouvoir livrer des /polices dans les dossiers de squelettes // Il faut completer avec un vrai _SPIP_PATH, de facon a pouvoir livrer des /polices dans les dossiers de squelettes
$font = find_in_path("polices/$police", "ecrire"); $font = find_in_path("polices/$police", "ecrire");
$imgbidon = imageCreateTrueColor($largeur, 45); $imgbidon = imageCreateTrueColor($largeur, 45);
$retour = printWordWrapped($imgbidon, $taille+5, 0, $largeur, $font, $black, $text, $taille); $retour = printWordWrapped($imgbidon, $taille+5, 0, $largeur, $font, $black, $text, $taille);
$hauteur = $retour["height"]; $hauteur = $retour["height"];
$largeur = $retour["width"]; $largeur_reelle = $retour["width"];
$espace = $retour["espace"]; $espace = $retour["espace"];
imagedestroy($imgbidon); imagedestroy($imgbidon);
$im = imageCreateTrueColor($largeur+$ombrex-$espace, $hauteur+5+$ombrey); $im = imageCreateTrueColor($largeur_reelle+$ombrex-$espace, $hauteur+5+$ombrey);
imagealphablending ($im, FALSE ); imagealphablending ($im, FALSE );
imagesavealpha ( $im, TRUE ); imagesavealpha ( $im, TRUE );
...@@ -1200,8 +1206,7 @@ function image_typo() { ...@@ -1200,8 +1206,7 @@ function image_typo() {
// Le texte ˆ dessiner // Le texte ˆ dessiner
// Remplacez le chemin par votre propre chemin de police // Remplacez le chemin par votre propre chemin de police
//global $text; //global $text;
if (strlen($ombre) == 6) printWordWrapped($im, $taille+$ombrey+5, $ombrex, $largeur, $font, $grey, $text, $taille, $align); if (strlen($ombre) == 6) printWordWrapped($im, $taille+$ombrey+5, $ombrex, $largeur, $font, $grey, $text, $taille, $align);
printWordWrapped($im, $taille+5, 0, $largeur, $font, $black, $text, $taille, $align); printWordWrapped($im, $taille+5, 0, $largeur, $font, $black, $text, $taille, $align);
...@@ -1213,12 +1218,20 @@ function image_typo() { ...@@ -1213,12 +1218,20 @@ function image_typo() {
$image = $fichier; $image = $fichier;
} else { } else if ($flag_gd_typo) {
$image = $fichier; $image = $fichier;
} }
if ($image) { if ($image) {
return "<img src='$image' style='border: 0px;'>"; $dimensions = getimagesize($image);
$largeur = $dimensions[0];
$hauteur = $dimensions[1];
if ($retour == "image_seule")
return "<img src='$image' style='border: 0px; width: ".$largeur."px; height: ".$hauteur.px."' alt='$alt' class='image_typo'>";
else if ($retour == "fichier_seul")
return "$image";
else
return "<img src='$image' style='border: 0px; width: ".$largeur."px; height: ".$hauteur.px."' alt='$alt' class='image_typo'><span class='texte_typo'>$texte</span>";
} else { } else {
return $texte; return $texte;
} }
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter