0
我正在嘗試在圖像中添加一些文本,並在不同大小的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
請電話我如何做到這一點。