Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- session_start();
- // Buat gambar dengan ukuran dan warna yang diinginkan
- $imageWidth = 200;
- $imageHeight = 50;
- $image = imagecreatetruecolor($imageWidth, $imageHeight);
- $backgroundColor = imagecolorallocate($image, 255, 255, 255);
- $textColor = imagecolorallocate($image, 0, 0, 0);
- // Isi latar belakang gambar dengan warna
- imagefilledrectangle($image, 0, 0, $imageWidth, $imageHeight, $backgroundColor);
- // Ambil teks CAPTCHA dari session
- $captchaText = $_SESSION['captcha'];
- // Tambahkan teks CAPTCHA pada gambar
- $fontSize = 20;
- $textX = 40;
- $textY = 30;
- $fontPath = 'comic.ttf'; // Ubah dengan path ke file font yang digunakan
- imagettftext($image, $fontSize, 0, $textX, $textY, $textColor, $fontPath, $captchaText);
- // Set header untuk menampilkan gambar
- header('Content-type: image/png');
- // Tampilkan gambar CAPTCHA
- imagepng($image);
- imagedestroy($image);
- ?>
Add Comment
Please, Sign In to add comment