|
|
|
สร้างภาพด้วย PHP ทำไงจะดึงไฟล์ภาพออกมาเซฟเก็บไว้เหมืนอัพโหลดได้ |
|
|
|
|
|
|
|
คือผมสรา้งไฟล์ภาพได้แล้วจาก CODE ด้านล่างครับ แต่ไม่สามารถดึงมาเป็นเป็นไฟล์ภาพให้มันบันทึกลงเครื่องได้ เหมื่อนเราอัพโหลดภาพลง ดาต้าเบส ต้องเขียน CODE อย่างไงต่อครับ ผู้รู้ช่วยตอบที
Code (PHP)
<?php
$rgb = hex2rgb("#97FFFF");
header("Content-type: image/jpeg");
$images = imagecreate(25,25);
$color = imagecolorallocate($images,$rgb[0],$rgb[1],$rgb[2]);
$photo = imagecolorallocate($images,0,0,0);
imagerectangle($images, 0, 0, 299, 199, $photo);
imagejpeg($images);
imagedestroy($images);
imagepng($images, "images");
?>
Tag : PHP
|
|
|
|
|
|
Date :
2015-03-17 14:02:38 |
By :
testonline |
View :
595 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำได้แล้วครับ......
|
|
|
|
|
Date :
2015-03-17 14:32:36 |
By :
testonline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|