[ Foro de PHP ]
Tengo problemas con el siguiente codigo, alguien me puede asesorar
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HERE WE GO IN MEXICO 2022</title>
<style type="text/css">
body,td,th {
font-family: Tahoma, Geneva, sans-serif;
}
</style>
</head>
<body>
<form action="procesar.php">
<p>Nombre Apellido
:
<input type="text" name="texto1" required placeholder="Primera línea">
<br><br>
Fecha
de Nacimiento :
<input type="text" name="texto2" required placeholder="Segunda línea">
</p>
<p>Foto :
<input type="File" name="Imagen" required placeholder="Segunda línea">
<br>
<br>
<br>
</p>
<button type="submit">Enviar</button>
</form>
</body>
</html>
<?php
if (!isset($_GET["texto1"]) || !isset($_GET["texto2"])) {
exit("No hay texto que colocar");
}
$rutaFuente = __DIR__ . "/" . "edosz.ttf";
$nombreImagen = "imagen.png";
$imagen = imagecreatefrompng($nombreImagen);
$color = imagecolorallocate($imagen, 0, 0, 0);
$texto1 = $_GET["texto1"];
$texto2 = $_GET["texto2"];
$imagen = $_GET["imagen"];
$tamanio = 40;
$tamanio2 =20;
$angulo = 0;
$espacio = 10;
$x = 230;
$y = 620;
$x2 = 640;
$y2 = 170;
$x3 = 740;
$y3 = 170;
imagettftext($imagen, $tamanio, $angulo, $x, $y, $color, $rutaFuente, $texto1);
imagettftext($imagen, $tamanio2, $angulo, $x2, $y2, $color, $rutaFuente, $texto2);
image($imagen, $tamanio2, $angulo, $x3, $y3, $color, $rutaFuente, $texto2);
header("Content-Type: image/png");
imagepng($imagen);
imagedestroy($imagen);
(No se puede continuar esta discusión porque tiene más de dos meses de antigüedad. Si tienes dudas parecidas, abre un nuevo hilo.)