English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

這隻php程式是正確的,是可以跑的。
$n=$_GET[\"n\"];
define(\"f_file\",\"image/投影片$n.JPG\");
$n=$_GET[\"n\"];
list($cur_width, $cur_height) = getimagesize(f_file);

$new_width=floor($cur_width*0.5);
$new_height=floor($cur_height*0.5);

$src=imagecreatefromjpeg(f_file);

$dst=imagecreatetruecolor($new_width,$new_height);

imagecopyresized($dst, $src,0,0,0,0,
$new_width,$new_height,
$cur_width, $cur_height);

imagejpeg($dst);
imagedestory($src);
imagedestory($dst);
?>

但卻夾在中,圖片就都會變成亂碼,但單獨只有的程式卻可以跑,請問要怎麼樣解決呢?要怎樣才能加入HTML標籤呢?

2006-07-08 22:13:51 · 1 個解答 · 發問者 Atlantis 1 in 電腦與網際網路 程式設計

1 個解答

您可以在HTML檔案內使用標籤,將src屬性設定成您的php檔案名稱(例:test.php),撰寫方式如下:而您的php檔案內的第一行需補上:header("Content-type:".image_type_to_mime_type(IMAGETYPE_JPEG));因為您使用的是imagejpeg()來產生圖檔。

2006-07-10 13:05:52 補充:
上述的test.php就是產生圖片的php程式檔,而您要撰寫的檔案,就不能是test.php,就是您想要顯示test.php所產生的圖的檔案。

2006-07-10 17:37:01 補充:
您的要求可撰寫成:

2006-07-09 09:30:18 · answer #1 · answered by 流浪玩家 6 · 0 0

fedest.com, questions and answers