-
-
/**
- * GD 画像テキスト外側
- *
- * @copyright UGiA.CN
- * [url=home.php?mod=space&uid=17823]@LINK[/url] www.ugea.cn/?p=88
- * @edit bbs.it-home.org
- */
- function imagetextouter(&$im, $size, $x, $y, $color, $fontfile, $text, $outer)
- {
- if (!function_exists('ImageColorAllocateHEX'))
- {
- function ImageColorAllocateHEX($im, $s)
- {
- if($s{0} == "#") $s = substr($s,1);
- $bg_dec = hexdec($s);
- return imagecolorallocate($im,
- ($bg_dec & 0xFF0000) >> 16,
- ($bg_dec & 0x00FF00) >> 8,
- ($bg_dec & 0x0000FF)
- );
- }
- }
- $ttf = false;
- if (is_file($fontfile))
- {
- $ttf = true;
- $area = imagettfbbox($size, $angle, $fontfile, $text);
- $ width = $area[2] - $area[0] + 2;
- $height = $area[1] - $area[5] + 2;
- }
- else
- {
- $width = strlen($text) * 10;
- $height = 16;
- }
- $im_tmp = imagecreate($width, $height);
- $white = imagecolorallocate($im_tmp, 255, 255, 255);
- $black = imagecolorallocate($im_tmp, 0, 0, 0);
- $color = ImageColorAllocateHEX($im, $color);
- $outer = ImageColorAllocateHEX($im, $outer);
- if ($ttf)
- {
- imagettftext($im_tmp, $size, 0, 0, $height - 2, $black, $fontfile, $text);
- imagettftext($im, $size, 0, $x, $y, $color, $fontfile, $text);
- $y = $y - $height + 2;
- }
- else
- {
- imagestring($im_tmp, $size, 0, 0, $text, $black);
- imagestring($im, $size, $x, $y, $text, $color);
- }
- for ($i = 0; $i {
- for ($j = 0; $j {
- $c = ImageColorAt($im_tmp, $i, $j);
- if ($c !== $white)
- {
- ImageColorAt ($im_tmp, $i, $j - 1) != $white || imagesetpixel($im, $x + $i, $y + $j - 1, $outer);
- ImageColorAt ($im_tmp, $i, $j + 1) != $white || imagesetpixel($im, $x + $i, $y + $j + 1, $outer);
- ImageColorAt ($im_tmp, $i - 1, $j) != $white || imagesetpixel($im, $x + $i - 1, $y + $j, $outer);
- ImageColorAt ($im_tmp, $i + 1, $j) != $white || imagesetpixel($im, $x + $i + 1, $y + $j, $outer);
- // 取消し释、Fireworks の発光効果と同じ
- /*
- ImageColorAt ($im_tmp, $i - 1, $ j - 1) != $white || imagesetpixel($im, $x + $i - 1, $y + $j - 1, $outer);
- ImageColorAt ($im_tmp, $i + 1, $j - 1) != $white || imagesetpixel($im, $x + $i + 1, $y + $j - 1, $outer);
- ImageColorAt ($im_tmp, $i - 1, $j + 1) != $white || imagesetpixel($im, $x + $i - 1, $y + $j + 1, $outer);
- ImageColorAt ($im_tmp, $i + 1, $j + 1) != $white || imagesetpixel($im, $x + $i + 1, $y + $j + 1, $outer);
- */
- }
- }
- }
- imagedestroy($im_tmp);
- }
- ?>
复制代码
2、调用例:
-
-
header("Content-type: image/png");
- $im = imagecreatefromjpeg("bluesky.jpg");
- $white = imagecolorallocate($im, 255,255,255);
- imagetextouter($im, 9, 10, 20, '#000000', "simsun.ttc", '新年快乐', '#ffffff');
- imagetextouter($im, 2, 10, 30, '#FFFF00', "", 'hello, world!' , '#103993');
- imagepng($im);
- imagedestroy($im);
- ?>
复正代
訪問说马赛克:void imagemask ( resource画像、int x1、int y1、int x2、int y2、int deep)
imagemask() は、座標 x1、y1 から x2、y2 (画像の左上の角が 0, 0) の四角形領域を加算します。
深くなるほど、数字が大きくなり、さらに深くなります。
効果、以下の図:
1、马赛克関数数代码:
-
/**
- * GD 画像マスク
- *
- * @edit bbs.it-home.org
- */
- function imagemask(&$im, $x1, $y1, $x2, $y2, $deep)
- {
- for($x = $x1; $x {
- for ($y = $y1; $y {
- $color = ImageColorAt ( $im, $x +round($deep / 2), $y +round($deep / 2));
- imagefilledrectangle ($im, $x, $y, $x + $deep, $y + $deep, $color);
- }
- }
- }
- ?>
-
复制發 2、呼び出し例:
-
-
header("Content-type: image/png");
- $im = imagecreatefromjpeg("test.jpg");
- imagemask($im, 57, 22, 103, 40 、 8);
- imagepng($im);
- imagedestroy($im);
- ?>
コードをコピー
|