J'ai le code de création d'image dans image_creator.
<?php
header("Content-Type: image/jpeg");
$im = ImageCreateFromGif("photo.gif");
$black = ImageColorAllocate($im, 255, 255, 255);
$start_x = 10;
$start_y = 20;
Imagettftext($im, 12, 0, $start_x, $start_y, $black, 'verdana.ttf', "text to write");
Imagejpeg($im, '', 100);
ImageDestroy($im);
?>
Le fichier pour la sortie d'image est image.php et contient le code ci-dessous.
<html>
<head>
</head>
<body>
<img src="http://localhost/image_creator.php"/>
</body>
</html>
Quand je lance image.php, je viens d’obtenir une page vierge. Pourquoi est-ce?
Utilisez-le pour ajouter du texte à l'image (copié à partir de PHP pour les enfants )
<?php
//Set the Content Type
header('Content-type: image/jpeg');
// Create Image From Existing File
$jpg_image = imagecreatefromjpeg('sunset.jpg');
// Allocate A Color For The Text
$white = imagecolorallocate($jpg_image, 255, 255, 255);
// Set Path to Font File
$font_path = 'font.TTF';
// Set Text to Be Printed On Image
$text = "This is a sunset!";
// Print Text On Image
imagettftext($jpg_image, 25, 0, 75, 300, $white, $font_path, $text);
// Send Image to Browser
imagejpeg($jpg_image);
// Clear Memory
imagedestroy($jpg_image);
?>
Le problème est ici
$black = ImageColorAllocate($im, 255, 255, 255);
ce n'est pas noir, c'est blanc. Pour le noir, ça devrait être comme,
$black = ImageColorAllocate($im, 0, 0, 0);
Le problème ici est, $black = ImageColorAllocate($im, 255, 255, 255);
// <== ce n'est pas noir, son blanc//pour le noir ça devrait être comme,
$black = ImageColorAllocate($im, 0, 0, 0);