if (function_exists("imagejpeg")) {
header("Content-type: image/jpeg");
$im = imagecreatefromjpeg("$img_file"); // file type
// set color in hexadecimal way
//$color = ImageColorAllocate($im, 0x00, 0x00, 0x00); // set black color by hexadecimal way
$color = ImageColorAllocate($im, 0xFF, 0xFF, 0xFF); // set color by hexadecimal way
$px = (imagesx($im) - 1 * strlen($string)) / 100; // position of string
imagestring($im, 100, $px, 10, $string, $color); // position of string
imagejpeg($im);
imagedestroy($im);
}
else { die("Not support this file"); }
//add คนดู
mysql_query("update $pym_data set pageview=pageview+1 where No=$No");
$string = "test"; // string
$img_file="$nphoto";
if (function_exists("imagejpeg")) {
header("Content-type: image/jpeg");
$im = imagecreatefromjpeg("$img_file"); // file type
// set color in hexadecimal way
//$color = ImageColorAllocate($im, 0x00, 0x00, 0x00); // set black color by hexadecimal way
$color = ImageColorAllocate($im, 0xFF, 0xFF, 0xFF); // set color by hexadecimal way
$px = (imagesx($im) - 1 * strlen($string)) / 100; // position of string
imagestring($im, 100, $px, 10, $string, $color); // position of string
imagejpeg($im);
imagedestroy($im);
}
else { die("Not support this file"); }