Accueil > > > GÉNÉRATEUR DE TEXTE SUR IMAGE(S) (BANNIÈRES/BOUTTONS....OU N'IMPORTE)
GÉNÉRATEUR DE TEXTE SUR IMAGE(S) (BANNIÈRES/BOUTTONS....OU N'IMPORTE)
Information sur la source
Description
Des exemples d'utilisations de ce script : http://generator.zeubu.com/?id=generator_texte_sur _image Il y a 3 fichiers : le fichier index.php, c'est la page web qui est affichée le fichier image.php qui permet la crétion des images et enfin le fichier config.inc qui permet de configurer le générateur. Donc je te met un exemple en téléchargement et je t'affiche le contenu du fichier de configuration pour que tu vois si ça t'interesse ou pas.
Source
- <?php
- //V1.1 plus besoins de "register globals" / V1.1 not needs for "register globals"
- //V1.0 lancement du script / V1.0 departure of script
- //*****************************************************************************
- //* HTTP://WWW.GENERATOR.ZEUBU.COM *
- //* ______ _____ _ _ _____ _ _ _____ _____ ___ ___*
- //* |___ / | ____| | | | | | _ \ | | | | / ___| / _ \ / |/ |
- //* / / | |__ | | | | | |_| | | | | | | | | | | | / /| /| |
- //* / / | __| | | | | | _ { | | | | | | | | | | / / |__/ | |
- //* / /__ | |___ | |_| | | |_| | | |_| | _ | |___ | |_| | / / | |
- //* /_____| |_____| \_____/ |_____/ \_____/ |_| \_____| \_____/ /_/ |_|
- //* *
- //* CREATED BY CLEMENT VIALETTES *
- //*****************************************************************************
- //
- //****************************************************************************
- //* *
- //* VOS PARAMETRES YOUR PARAMETERS *
- //* *
- //****************************************************************************
- //
- // Vous pouvez changer le nom du répertoire.
- // Les images doivent être des fichiers .jpg et les fonts des .ttf
- // L'image et la font seront automatiquement trouvées par le script
- // Si il y a plusieurs fichiers .ttf et .jpg, le choix sera alors fait lors de l'affichage.
- //
- // You can change the name of the repertory.
- // The images must be .jpg files and the font of the .ttf
- // Image and Font automatically found by script
- // If there are several files .ttf and .jpg, the choice will then be made during posting
- //
- //****************************************************************************
- //* GENERAL GLOBAL *
- //****************************************************************************
- //
- // fr = french / en = english / all = detection langage navigateur
- $lng="all";
- //
- // Nom du site Website name
- $site="generator.zeubu.com";
- //
- //
- //
- //****************************************************************************
- //* PARAMETRES DE LA PAGE PARAMETERS OF THE PAGE *
- //****************************************************************************
- //
- // Texte à l'ouverture de la page Text with the opening of the page
- $textdef="Zeubu.com ";
- //
- // Couleur du fond de la page Fill color of the page
- $pagecolor="#BBBBDD";
- //
- // Couleur du texte de la page Color of the text of the page
- $textcolor="#111155";
- // Couleur des liens de la page Color of the links of the page
- $textcolorlink="#FF0000";
- //
- // Taille des images miniatures Size miniature images
- $tdim="30";
- //
- // Taille d'écriture font miniatures Size writing of miniature images
- $tdefm="15";
- //
- // Taille de la bordure de l'image Size of the border of the image
- $sizeborder=0;
- //
- //
- //
- //****************************************************************************
- //* PARAMETRES DU TEXTE PARAMETERS OF THE TEXT *
- //****************************************************************************
- //
- // Taille d'écriture Writing size
- $size="35"; // multiple de 5 si l'utilisateur choisi / multiple of 5 if the selected user
- $sizeaff="y";// y/n l'utilisateur choisi / the selected user
- //
- // Nombre de caractères maximum Maximum number of characters
- $caract=40;
- //
- //
- // Position du texte Position of the text
- //
- // Align Vertical h="haut/top" b="bas/bottom" m="milieu/middle" ms="centrer sur $yi/center on $yi"
- $py="m";
- $pyaff="y";// y/n l'utilisateur choisi / the selected user
- //
- // Align Horizontal g="gauche/left" d="droite/right" m="centre/center" ms="centrer sur $xi/center on $xi=ms"
- $px="d";
- $pxaff="y";// y/n l'utilisateur choisi / the selected user
- //
- // Marge (si le texte n'est pas au milieu) Stroke (if the text is not in the center)
- $xi=5; $yi=5; // pixel
- //
- //
- //Couleurs format #002233 (00=red 22=green 33=blue, min=00 max=FF 0123456789ABCDEF)
- //
- // 1er couleur du dégradé 1st color of the range
- $colorup="#FF0000";
- //
- // 2ieme couleur du dégradé 2nd color of the range
- $colordown="#00FFFF";
- $coloraff="y";// y/n l'utilisateur choisi / the selected user
- //
- // dégradé / range : v=vertical / h=horizontal
- $fdvh="h";
- //
- //
- //Transparence du texte (0 à 100) 100=pas de transparence
- //Transparency of the text (0 to 100) 100=not of transparency
- $fondant=100; // multiple de 5 si l'utilisateur choisi / multiple of 5 if the selected user
- $fondantaff="y";// y/n l'utilisateur choisi / the selected user
- //
- //
- //Ne pas proposer de choix d'image et créer toutes les images du repertoire =y
- //Not to propose a choice of image and to create all the images of the repertory =y
- $allimage="y";
- //
- //
- //Ne pas proposer de choix de font et créer l'images avec toutes les fonts du repertoire =y
- //Not to propose a choice of font and create the images with all the font of the repertory =y
- $allfont="n";
- //
- //
- // Taux de compression de l'image jpg Compression ratio of the image jpg
- $quality=95;
- //
- //
- //
- //
- //****************************************************************************
- //* *
- //* DON'T TOUCH NE PAS TOUCHER *
- //* *
- //****************************************************************************
-
- if (!ini_get('register_globals')) {
- $superglobals = array($_SERVER, $_ENV,
- $_FILES, $_COOKIE, $_POST, $_GET);
- if (isset($_SESSION)) {
- array_unshift($superglobals, $_SESSION);
- }
- foreach ($superglobals as $superglobal) {
- extract($superglobal, EXTR_SKIP);
- }
- ini_set('register_globals', true);
- }
-
- if($lng=="all")
- $lng=getenv("HTTP_ACCEPT_LANGUAGE");
-
- if($lng=="fr")
- {
- $colort="Couleur du texte";
- $colorr="Couleur";
- $colord="Couleur début";
- $colorf="Couleur fin";
- $sizea="Choisir la taille d'écriture";
- $tel="Télécharger l'image";
- $av="Alignement vertical";
- $ah="Alignement horizontal";
- $trance="Transparence du texte";
- $desc="Générateur d'image crée par Zeubu.com pour $site.";
- $key="générateur,générateur de logo,générateurs d'images,creation graphique,art graphique";
- $generator="Générateur d'image paramétré par ".$site." (crée par Zeubu.com)";
- $haut="haut";
- $milieu="milieu";
- $bas="bas";
- $gauche="gauche";
- $droite="droite";
- $centre="centre";
- $aff="AFFICHER";
- $ftx="Votre texte";
- $ft="Choisir la police";
- $imgft="Choisir l'image";
- $ttf="<b>IL N'Y A PAS DE FICHIER .TTF DANS LE REPERTOIRE</b>";
- $jpg="<b>IL N'Y A PAS DE FICHIER .JPG DANS LE REPERTOIRE</b>";
- $qdci="<b>QUE DOIT CREER IMAGE.PHP ?</b>";
- }
- else
- {
- $colort="Colour of the text";
- $colorr="Color";
- $colord="Begin color";
- $colorf="Final color";
- $sizea="Choose the writing size";
- $tel="Download the image";
- $av="Vertical alignment";
- $ah="Horizontal alignment";
- $trance="Transparency of the text";
- $desc="Zeubu.com for $site.";
- $key="generator,generator of logo,generators of images,graphic creation,graphic art";
- $generator="Generator of image parameterized by ".$site." (create by Zeubu.com)";
- $haut="top";
- $milieu="middle";
- $bas="bottom";
- $gauche="left";
- $droite="right";
- $centre="center";
- $aff="DISPLAY";
- $ftx="Your text";
- $ft="Choose the font";
- $imgft="Choose the image";
- $ttf="<b>IT THERE A NO FILE .TTF IN THE DIRECTORY</b>";
- $jpg="<b>IT THERE A NO FILE .JPG IN THE DIRECTORY</b>";
- $qdci="<b>WHAT HAS TO CREATE IMAGE.PHP ?</b>";
- }
-
- $tbsp="<b><font color='2244BB'>T</font><font color='2233AA'>h</font><font color='113388'>e </font><font color='113366'>B</font><font color='112244'>i</font><font color='002222'>g </font><font color='002200'>S</font><font color='002222'>h</font><font color='112244'>i</font><font color='113366'>t </font><font color='113388'>P</font><font color='2233AA'>r</font><font color='2244BB'>o</font><font color='2244CC'>b</font><font color='3344DD'>l</font><font color='3355EE'>e</font><font color='4455FF'>m</font><font color='5555FF'> !</font><font color='6655FF'>!</font><font color='7755FF'>!</font><font color='8855FF'>!</font><font color='9955FF'>!</font><font color='AA55FF'>!</font><font color='BB55FF'>!</font><font color='CC55FF'>!</font><font color='DD55FF'>!</font><font color='EE55FF'>!</font><font color='FF55FF'>!</font><font color='FF66FF'>!</font><font color='FF77FF'>!</font><font color='FF88FF'>!</font><font color='FF99FF'>!</font><font color='FFAAFF'>!</font><font color='FFBBFF'>!</font><font color='FFCCFF'>!</font><font color='FFDDFF'>!</font><font color='FFEEFF'>!</font><font color='FFFFFF'>!</font></b><br><br>";
-
- // oooo$$$$$$$$$$$$oooo
- // oo$$$$$$$$$$$$$$$$$$$$$$$$o
- // oo$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$o o$ $$ o$
- // o $ oo o$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$o $$ $$ $$o$
- // oo $ $ "$ o$$$$$$$$$ $$$$$$$$$$$$$ $$$$$$$$$o $$$o$$o$
- // "$$$$$$o$ o$$$$$$$$$ $$$$$$$$$$$ $$$$$$$$$$o $$$$$$$$
- // $$$$$$$ $$$$$$$$$$$ $$$$$$$$$$$ $$$$$$$$$$$$$$$$$$$$$$$
- // $$$$$$$$$$$$$$$$$$$$$$$ $$$$$$$$$$$$$ $$$$$$$$$$$$$$ """$$$
- // "$$$""""$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ "$$$
- // $$$ o$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ "$$$o
- // o$$" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$o
- // $$$ $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" "$$$$$$ooooo$$$$o
- // o$$$oooo$$$$$ $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ o$$$$$$$$$$$$$$$$$
- // $$$$$$$$"$$$$ $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$""""""""
- // """" $$$$ "$$$$$$$$$$$$$$$$$$$$$$$$$$$$" o$$$
- // "$$$o """$$$$$$$$$$$$$$$$$$"$$" $$$
- // $$$o "$$""$$$$$$"""" o$$$
- // $$$$o o$$$"
- // "$$$$o o$$$$$$o"$$$$o o$$$$
- // "$$$$$oo ""$$$$o$$$$$o o$$$$""
- // ""$$$$$oooo "$$$o$$$$$$$$$"""
- // ""$$$$$$$oo $$$$$$$$$$
- // """"$$$$$$$$$$$
- // $$$$$$$$$$$$
- // $$$$$$$$$$"
- // "$$$""
-
- ?>
<?php
//V1.1 plus besoins de "register globals" / V1.1 not needs for "register globals"
//V1.0 lancement du script / V1.0 departure of script
//*****************************************************************************
//* HTTP://WWW.GENERATOR.ZEUBU.COM *
//* ______ _____ _ _ _____ _ _ _____ _____ ___ ___*
//* |___ / | ____| | | | | | _ \ | | | | / ___| / _ \ / |/ |
//* / / | |__ | | | | | |_| | | | | | | | | | | | / /| /| |
//* / / | __| | | | | | _ { | | | | | | | | | | / / |__/ | |
//* / /__ | |___ | |_| | | |_| | | |_| | _ | |___ | |_| | / / | |
//* /_____| |_____| \_____/ |_____/ \_____/ |_| \_____| \_____/ /_/ |_|
//* *
//* CREATED BY CLEMENT VIALETTES *
//*****************************************************************************
//
//****************************************************************************
//* *
//* VOS PARAMETRES YOUR PARAMETERS *
//* *
//****************************************************************************
//
// Vous pouvez changer le nom du répertoire.
// Les images doivent être des fichiers .jpg et les fonts des .ttf
// L'image et la font seront automatiquement trouvées par le script
// Si il y a plusieurs fichiers .ttf et .jpg, le choix sera alors fait lors de l'affichage.
//
// You can change the name of the repertory.
// The images must be .jpg files and the font of the .ttf
// Image and Font automatically found by script
// If there are several files .ttf and .jpg, the choice will then be made during posting
//
//****************************************************************************
//* GENERAL GLOBAL *
//****************************************************************************
//
// fr = french / en = english / all = detection langage navigateur
$lng="all";
//
// Nom du site Website name
$site="generator.zeubu.com";
//
//
//
//****************************************************************************
//* PARAMETRES DE LA PAGE PARAMETERS OF THE PAGE *
//****************************************************************************
//
// Texte à l'ouverture de la page Text with the opening of the page
$textdef="Zeubu.com ";
//
// Couleur du fond de la page Fill color of the page
$pagecolor="#BBBBDD";
//
// Couleur du texte de la page Color of the text of the page
$textcolor="#111155";
// Couleur des liens de la page Color of the links of the page
$textcolorlink="#FF0000";
//
// Taille des images miniatures Size miniature images
$tdim="30";
//
// Taille d'écriture font miniatures Size writing of miniature images
$tdefm="15";
//
// Taille de la bordure de l'image Size of the border of the image
$sizeborder=0;
//
//
//
//****************************************************************************
//* PARAMETRES DU TEXTE PARAMETERS OF THE TEXT *
//****************************************************************************
//
// Taille d'écriture Writing size
$size="35"; // multiple de 5 si l'utilisateur choisi / multiple of 5 if the selected user
$sizeaff="y";// y/n l'utilisateur choisi / the selected user
//
// Nombre de caractères maximum Maximum number of characters
$caract=40;
//
//
// Position du texte Position of the text
//
// Align Vertical h="haut/top" b="bas/bottom" m="milieu/middle" ms="centrer sur $yi/center on $yi"
$py="m";
$pyaff="y";// y/n l'utilisateur choisi / the selected user
//
// Align Horizontal g="gauche/left" d="droite/right" m="centre/center" ms="centrer sur $xi/center on $xi=ms"
$px="d";
$pxaff="y";// y/n l'utilisateur choisi / the selected user
//
// Marge (si le texte n'est pas au milieu) Stroke (if the text is not in the center)
$xi=5; $yi=5; // pixel
//
//
//Couleurs format #002233 (00=red 22=green 33=blue, min=00 max=FF 0123456789ABCDEF)
//
// 1er couleur du dégradé 1st color of the range
$colorup="#FF0000";
//
// 2ieme couleur du dégradé 2nd color of the range
$colordown="#00FFFF";
$coloraff="y";// y/n l'utilisateur choisi / the selected user
//
// dégradé / range : v=vertical / h=horizontal
$fdvh="h";
//
//
//Transparence du texte (0 à 100) 100=pas de transparence
//Transparency of the text (0 to 100) 100=not of transparency
$fondant=100; // multiple de 5 si l'utilisateur choisi / multiple of 5 if the selected user
$fondantaff="y";// y/n l'utilisateur choisi / the selected user
//
//
//Ne pas proposer de choix d'image et créer toutes les images du repertoire =y
//Not to propose a choice of image and to create all the images of the repertory =y
$allimage="y";
//
//
//Ne pas proposer de choix de font et créer l'images avec toutes les fonts du repertoire =y
//Not to propose a choice of font and create the images with all the font of the repertory =y
$allfont="n";
//
//
// Taux de compression de l'image jpg Compression ratio of the image jpg
$quality=95;
//
//
//
//
//****************************************************************************
//* *
//* DON'T TOUCH NE PAS TOUCHER *
//* *
//****************************************************************************
if (!ini_get('register_globals')) {
$superglobals = array($_SERVER, $_ENV,
$_FILES, $_COOKIE, $_POST, $_GET);
if (isset($_SESSION)) {
array_unshift($superglobals, $_SESSION);
}
foreach ($superglobals as $superglobal) {
extract($superglobal, EXTR_SKIP);
}
ini_set('register_globals', true);
}
if($lng=="all")
$lng=getenv("HTTP_ACCEPT_LANGUAGE");
if($lng=="fr")
{
$colort="Couleur du texte";
$colorr="Couleur";
$colord="Couleur début";
$colorf="Couleur fin";
$sizea="Choisir la taille d'écriture";
$tel="Télécharger l'image";
$av="Alignement vertical";
$ah="Alignement horizontal";
$trance="Transparence du texte";
$desc="Générateur d'image crée par Zeubu.com pour $site.";
$key="générateur,générateur de logo,générateurs d'images,creation graphique,art graphique";
$generator="Générateur d'image paramétré par ".$site." (crée par Zeubu.com)";
$haut="haut";
$milieu="milieu";
$bas="bas";
$gauche="gauche";
$droite="droite";
$centre="centre";
$aff="AFFICHER";
$ftx="Votre texte";
$ft="Choisir la police";
$imgft="Choisir l'image";
$ttf="<b>IL N'Y A PAS DE FICHIER .TTF DANS LE REPERTOIRE</b>";
$jpg="<b>IL N'Y A PAS DE FICHIER .JPG DANS LE REPERTOIRE</b>";
$qdci="<b>QUE DOIT CREER IMAGE.PHP ?</b>";
}
else
{
$colort="Colour of the text";
$colorr="Color";
$colord="Begin color";
$colorf="Final color";
$sizea="Choose the writing size";
$tel="Download the image";
$av="Vertical alignment";
$ah="Horizontal alignment";
$trance="Transparency of the text";
$desc="Zeubu.com for $site.";
$key="generator,generator of logo,generators of images,graphic creation,graphic art";
$generator="Generator of image parameterized by ".$site." (create by Zeubu.com)";
$haut="top";
$milieu="middle";
$bas="bottom";
$gauche="left";
$droite="right";
$centre="center";
$aff="DISPLAY";
$ftx="Your text";
$ft="Choose the font";
$imgft="Choose the image";
$ttf="<b>IT THERE A NO FILE .TTF IN THE DIRECTORY</b>";
$jpg="<b>IT THERE A NO FILE .JPG IN THE DIRECTORY</b>";
$qdci="<b>WHAT HAS TO CREATE IMAGE.PHP ?</b>";
}
$tbsp="<b><font color='2244BB'>T</font><font color='2233AA'>h</font><font color='113388'>e </font><font color='113366'>B</font><font color='112244'>i</font><font color='002222'>g </font><font color='002200'>S</font><font color='002222'>h</font><font color='112244'>i</font><font color='113366'>t </font><font color='113388'>P</font><font color='2233AA'>r</font><font color='2244BB'>o</font><font color='2244CC'>b</font><font color='3344DD'>l</font><font color='3355EE'>e</font><font color='4455FF'>m</font><font color='5555FF'> !</font><font color='6655FF'>!</font><font color='7755FF'>!</font><font color='8855FF'>!</font><font color='9955FF'>!</font><font color='AA55FF'>!</font><font color='BB55FF'>!</font><font color='CC55FF'>!</font><font color='DD55FF'>!</font><font color='EE55FF'>!</font><font color='FF55FF'>!</font><font color='FF66FF'>!</font><font color='FF77FF'>!</font><font color='FF88FF'>!</font><font color='FF99FF'>!</font><font color='FFAAFF'>!</font><font color='FFBBFF'>!</font><font color='FFCCFF'>!</font><font color='FFDDFF'>!</font><font color='FFEEFF'>!</font><font color='FFFFFF'>!</font></b><br><br>";
// oooo$$$$$$$$$$$$oooo
// oo$$$$$$$$$$$$$$$$$$$$$$$$o
// oo$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$o o$ $$ o$
// o $ oo o$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$o $$ $$ $$o$
// oo $ $ "$ o$$$$$$$$$ $$$$$$$$$$$$$ $$$$$$$$$o $$$o$$o$
// "$$$$$$o$ o$$$$$$$$$ $$$$$$$$$$$ $$$$$$$$$$o $$$$$$$$
// $$$$$$$ $$$$$$$$$$$ $$$$$$$$$$$ $$$$$$$$$$$$$$$$$$$$$$$
// $$$$$$$$$$$$$$$$$$$$$$$ $$$$$$$$$$$$$ $$$$$$$$$$$$$$ """$$$
// "$$$""""$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ "$$$
// $$$ o$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ "$$$o
// o$$" $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$o
// $$$ $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" "$$$$$$ooooo$$$$o
// o$$$oooo$$$$$ $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ o$$$$$$$$$$$$$$$$$
// $$$$$$$$"$$$$ $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$""""""""
// """" $$$$ "$$$$$$$$$$$$$$$$$$$$$$$$$$$$" o$$$
// "$$$o """$$$$$$$$$$$$$$$$$$"$$" $$$
// $$$o "$$""$$$$$$"""" o$$$
// $$$$o o$$$"
// "$$$$o o$$$$$$o"$$$$o o$$$$
// "$$$$$oo ""$$$$o$$$$$o o$$$$""
// ""$$$$$oooo "$$$o$$$$$$$$$"""
// ""$$$$$$$oo $$$$$$$$$$
// """"$$$$$$$$$$$
// $$$$$$$$$$$$
// $$$$$$$$$$"
// "$$$""
?>
Conclusion
Bon amusez vous bien.
Historique
- 03 avril 2007 17:35:20 :
- 03 avril 2007 V1.1 plus besoins de "register globals" à On
01 avril 2007 V1.0 lancement du script
Sources du même auteur
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
affichage de texte et d'image quand on passe sur un lien [ par forngot ]
Voila je voudrais savoir si c possible en php que quand on passe sur lien dans une page une petite fenetre apparait est affiche du texte et de l'image
texte perso sur image [ par masseur ]
Salut.Je voudrais mettre sur mon site une image d'un maillot par exemple et mettre un champ ou la personne tape son pseudo et hop ca réaffiche le mail
code perso: balises spéciales [ par Samiby ]
Bonjour,Je programme actuellement un blog, et pour poster des lessages, j'ai créé un code personnalisé.J'ai un prblème avec les images.La syntaxe de m
texte sur image... librairie GD ? [ par ozitoun ]
Bonjour bonjour,voili voilou, je cherche à mettre une texte sur une image (jpeg).j'ai essayé les imagestring, imagechar... mais à chaque fois les exem
Session bizarroïde [ par malik7934 ]
Hello,Je ne connais pas trop les sessions et j'ai un problème:J'ai un fichier pwd.php qui crée une image avec un text 'pwd':<? session_start();func
[image] ajouter du texte à une image ?? [ par nairolf_88 ]
bonjour, je suis entrain de coder un menu dont les images sont génerer par un code php qui ajoute le nom du lien a une image png de base (sans t
ajouter .txt sur image [ par Sshenron ]
bonjour voila j'ai quelque chose à vous demander... Pouriez vous me donner un exemple de script permettant d'ajouter du texte (se trouvant dans un fi
Caractères accentués avec ImageTTFText ? [ par bibos ]
Bonjour,Je viens de me mettre à la génération d'images en PHP, et j'ai un premier problème sur lequel je bute depuis 24h...Et ça me parait tellement b
une image en mode texte et inversement [ par ]
bonjour a tous, voila mon probleme :j'ai dans un zip une image, je lis le contenu du zip avec la fonction zip_entry_read,jusque la ça marche tres
Telechargement d'image, redimensionnement et disposition dans un div [ par Nownow ]
Bonjour à tous,Malgré toute notre bonne volonté, nous n'arrivons pas à faire en sorte que notre image apparaisse dans l'emplacemen
|
Derniers Blogs
IMAGINE CUP 2012, MAKE A SIGN EN FINALEIMAGINE CUP 2012, MAKE A SIGN EN FINALE par junarnoalg
Voilà qui est fait, la nouvelle est officielle ! L'équipe belge "Make a Sign" va au pays des kangourous défendre son projet dans la catégorie Software Design. http://www.imaginecup.com/CompetitionsContent/Competition/WorldwideFinalists.aspx V...
Cliquez pour lire la suite de l'article par junarnoalg KINECT 1.5 IS OUT !KINECT 1.5 IS OUT ! par Vko
La version 1.5 du Kinect For Microsoft vient tout juste de sortir ! Plein de nouveautés: Tracking de squelette en Near Mode Détection en position assise Détection faciale avec un SDK dédié Documentation et des guideline (enfin) Un out...
Cliquez pour lire la suite de l'article par Vko LES ACTUALITéS DE LA SEMAINE SUR C2I.FR (14 MAI - 20 MAI) LES ACTUALITéS DE LA SEMAINE SUR C2I.FR (14 MAI - 20 MAI) par richardc
Mise à jour des Web API du 14 Mai
Réservez dès maintenant votre journée du 20 juin pour le Windows Azure Dev Camp 2012 à Paris
Mise à jour de Team Foundation Service
MechCommander 2 sur Windows 8
Entity Framework 5 Release Candidate e...
Cliquez pour lire la suite de l'article par richardc REACTIVE EXTENSIONS : CONSOMMER DES SERVICES AVEC RX PARTIE 3, LES PIèGES à éVITERREACTIVE EXTENSIONS : CONSOMMER DES SERVICES AVEC RX PARTIE 3, LES PIèGES à éVITER par Groc
Une mauvaise utilisation de rx lors de l'écriture d'une couche d'accès à des services peut conduire à des cas embarassants avec des erreurs mal gérées, des appels qui ne partent lorsqu'ils le devraient, et même des résultats incorrects . le tout nuis...
Cliquez pour lire la suite de l'article par Groc SHAREPOINT BLOG SITE, PROBLèME D'ARCHIVESSHAREPOINT BLOG SITE, PROBLèME D'ARCHIVES par junarnoalg
Dernièrement, nous avons migré le site
myTIC
vers un nouveau serveur SharePoint 2010. Dans les contenus que nous vouloins récupérer, nous avions un certain nombre de blogs.
Nous avons utilisé les commandes Power...
Cliquez pour lire la suite de l'article par junarnoalg
Logiciels
sDEVIS-FACTURES vlPRO (8.1.0.3)SDEVIS-FACTURES VLPRO (8.1.0.3)sDEVIS-FACTURES vlPRO a été mis au point pour les particuliers, créateurs, entrepreneurs, artisa... Cliquez pour télécharger sDEVIS-FACTURES vlPRO 974 Application Server (12.2.4.6)974 APPLICATION SERVER (12.2.4.6)Développez de puissantes applications dans un environnement de 'cloud computing', clusterisé, séc... Cliquez pour télécharger 974 Application Server vPicture (1.4.2.1)VPICTURE (1.4.2.1)Avec vPicture, hébergez vos images facilement et rapidement.
vPicture est un utilitaire simple, ... Cliquez pour télécharger vPicture Easy-Planning (2.2.1.6)EASY-PLANNING (2.2.1.6)Easy-Planning permet de créer des plannings sous la représentation de diagrammes et est adapté au... Cliquez pour télécharger Easy-Planning COM-BACKUP (2.0)COM-BACKUP (2.0)
COM-BACKUP est un logiciel de sauvegarde qui permet de planifier les sauvegardes de vos dossiers ...
Cliquez pour télécharger COM-BACKUP
|