嘿傢伙我一直在PHP做一些代碼..但它不給我,我預計..The代碼在PHP居中圖像與GD庫
HTML代碼
<html>
<body>
<form action="images.php" method="post">
Enter image Name :<input type="text" name="imagename">
<br></br>
<input type="submit" name="sumbit">
<br></br>
</form>
</body>
</html>
輸出在這個網站碼用戶allowded輸入他的名字,使得根據所述名字生成的圖像..
PHP代碼
<?php
$name = $_POST['imagename'];
if($_POST['imagename'] != ''){
header("Content-Type: image/png");
$name = $_POST['imagename'];
$im = @imagecreate(800,600);
$background_color = imagecolorallocate($im, 0xFF, 0xCC, 0xDD);
$text_color = imagecolorallocate($im, 133, 14, 91);
imagestring($im, 5, 300, 300, "$name", $text_color);
imagepng($im);
imagedestroy($im);
}
else echo "no image created";
?>
此php代碼生成圖像accrding給出的名稱..
圖像生成這段代碼罰款,但我需要的是,所創建的圖像必須出現在瀏覽器的中心...我已經嘗試過的HTML file..but它沒有工作使用<img src="file.php>
..
這將是真正有用的,如果你們找我solution..Thanks提前
您應該將圖像內容居中放在封閉的圖像矩形中,即圖像周圍的框 – higuaro
did not get you ..可以更準確地告訴 – user3664696