我正在尝试向图像添加一些文本并在 php 中使用 gd 以不同大小显示它。我知道如何显示 1 张图片。这是代码。
<?php
if (!isset($_FILES['image']['tmp_name'])) {
}
else{
$file=$_FILES['image']['tmp_name'];
$img_src = imagecreatefromstring(file_get_contents($file));
$img_dest = imagecreatetruecolor(100, 100);
$src_width = imagesx($img_src);
$src_height = imagesy($img_src);
imagecopyresized($img_dest, $img_src, 0, 0, 0, 0, 100, 100, $src_width, $src_height);
$text = $_POST['text'];
$font_path = 'arial.TTF';
$black = imagecolorallocate($img_dest, 0, 0, 0);
imagettftext($img_dest, 25, 0, 302, 62, $grey, $font_path, $text);
imagettftext($img_dest, 20, 0, 10, 20, $black, $font_path, $text);
header( "Content-type: image/png" );
imagepng( $img_dest );
imagedestroy( $img_dest );
imagedestroy( $img_src );
}
?>
但是我如何在同一页面中显示超过 1 个,相同的图像但大小不同
请告诉我如何做到这一点。