|
|
|
ช่วยหน่อยนะคะ จากโค๊ด อ่ะค่ะ ต้องการที่จะให้ output รูปภาพ ออกมาเป็นไฟล์ ที่ชื่อ test_rename.png อ่ะค่ะ ต้องเพิ่มโค๊ด ตรงไหนค่ะ ช่วยทีนะค่ะ |
|
|
|
|
|
|
|
<?
$fileinput = "image/test.png";
$fileoutput = "image_out/test.png";
$filerename = "image/test_rename.png";
rename($fileinput,$filerename);
$input = fopen("$fileinput","r");
$output = fopen("$fileoutput","w");
$col = 100;
$row=100;
if($input=="") {
echo "cannot open file";
} // end if
else {
$im = imagecreatefrompng($fileinput);
for($i=0;$i<100;$i++) {
for($j=0;$j<100;$j++) {
$rgb = imagecolorat($im,$i,$j);
$array[$i][$j] = $rgb & 0xFF;
} // end loop for j
} // end loop for i
//} // end else
$white = imagecolorallocate($im,0,0,255);
$black = imagecolorallocate($im,0,0,0);
$image = imagecreate(100,100);
for($i=0;$i<100;$i++) {
for($j=0;$j<100;$j++){
if($array[$i-1][$j-1]&&$array[$i][$j-1]&&$array[$i+1][$j-1]
&&$array[$i-1][$j]&&$array[$i][$j]&&$array[$i+1][$j]
&&$array[$i-1][$j+1]&&$array[$i][$j+1]&&$array[$i+1][$j+1]==255)
{
imagesetpixel($image,round($i),round($j),$white);
} // end if array[][]
else
{
imagesetpixel($image,round($i),round($j),$black);
} // end else
} // end loop for j
} // end loop for i
//}
//fclose($input);
//fclose($output);
?>
จากโค๊ด อ่ะค่ะ ต้องการที่จะให้ output รูปภาพ ออกมาเป็นไฟล์ ที่ชื่อ test_rename.png อ่ะค่ะ ต้องเพิ่มโค๊ด ตรงไหนค่ะ ช่วยทีนะค่ะ
Tag : - - - -
|
|
|
|
|
|
Date :
15 มิ.ย. 2550 10:56:28 |
By :
งงมาหลายวัน |
View :
1513 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อาจจะต้องปิดไฟล์ที่อ่านก่อนนะครับ แล้วค่อยใช้คำสั่ง rename ผมเองก็ไม่ค่อยรู้อ่ะครับ แต่อยากช่วย ลองดูนะครับ ย้ายตำแหน่งฟังชั่น rename มาไว้ท้าย ๆ เนี้ย
|
|
|
|
|
Date :
16 มิ.ย. 2550 18:14:23 |
By :
noomna19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|