- <?php
-
-
-
-
-
-
-
-
-
-
-
-
- function img_text($img, $new_img, $text, $text_size, $text_angle, $text_x, $text_y, $text_font, $r, $g, $b){
- $text=iconv("gb2312","UTF-8",$text);
- Header("Content-type: image/gif");
- $im = @imagecreatefromstring(file_get_contents($img)) or die ("打开图片失败!");
- $color = ImageColorAllocate($im, $r,$g,$b);
-
-
-
-
-
-
-
-
- ImageTTFText($im, $text_size, $text_angle, $text_x, $text_y, $color, $text_font, $text);
- if ($new_img==""):
- ImageGif($im);
- else:
- ImageGif($im,$new_img);
- endif;
- ImageDestroy($im);
- }
- ?>
|