画像に透かしを追加する PHP コードの例。
-
- /*
- //Example
- $image = new Gimage();
- $image->limit = 600;//長さと幅の制限
- $image->wm_text= ” www.linuxlaptop.cn”;//ウォーターマークテキスト
- $image->wm_fontfile=”font/xsuni.ttf”;//フォントファイル
- $image->wm_color=”#ff0000″;
- $image-> ; save_file = "ltcn.jpg";//xx ファイルに保存
- $image->create("linuxlaptop.jpg");//xx ファイルから作成
- */
- /*
- +------ -----------------------
- | サムネイルと透かし入りの画像クラスを生成する
- +-------------- --- -------------
- */
- Class Gimage{
-
- var $input_type = "" //入力画像形式
- var $output_type = "jpg"; //出力画像形式
- var $limit = 0; // 画像サイズ制限
- var $filename = "" // 画像のファイル名を入力します (画像データを直接入力することもできます)
- var $jpeg_quality = 90 // jpeg 画質
- var $ save_file = ''; //出力ファイル名
- var $wm_text = ""; //ウォーターマークのテキスト (中国語はサポートされていません:'( )
- var $wm_size = 12; //ウォーターマークのテキストのサイズ
- var $wm_angle = 0; //ウォーターマークのテキスト角度
- var $wm_x = 30; //ウォーターマークのx座標
- var $wm_color = "#cccccc" //ウォーターマークの色
- var $wm_fontfile = "geodesic .ttf";//ウォーターマークフォントファイル
-
- function create($filename="")
- {
- if ($filename) $this->filename = $filename;
-
- if (!$this-> input_type) $this->get_type();
- if (!$this->output_type) $this->output_type = $this->input_type;
-
- if ($this->input_type == "jpg ") $this->input_type = "jpeg";
- if ($this->output_type == "jpg") $this->output_type = "jpeg";
-
- switch ($this->input_type) {
- case 'gif':
- $src_img=ImageCreateFromGIF($this->ファイル名);
- ブレーク;
-
- case 'jpeg':
- $src_img=ImageCreateFromJPEG($this->ファイル名);
- ブレーク;
-
- case ' png':
- $src_img=ImageCreateFromPNG($this->ファイル名);
- ブレーク;
-
- デフォルト:
- $src_img=ImageCreateFromString($this->ファイル名);
- ブレーク
- }
- $src_w=ImageSX ($ src_img);
- $src_h=ImageSY($src_img);
- if ($src_w>=$src_h){
- if ($src_w>$this->limit){
- $new_w=$this->limit ;
- $new_h=($this->limit / $src_w)*$src_h;
- }
- }
- else{
- if ($src_h>$this->limit){
- $new_h=$this-> 制限;
- $new_w=($this->limit / $src_h)*$src_w;
- }
- }
-
- if ($new_h){
- $dst_img=imagecreatetruecolor($new_w,$new_h);
- imagecopyresampled($ dst_img, $src_img,0,0,0,0,$new_w,$new_h,ImageSX($src_img),ImageSY($src_img));
- }
- else{
- $dst_img = $src_img;
- }
-
- if ( $this ->wm_text)
- {
- if(preg_match("/([a-f0-9][a-f0-9])([a-f0-9][a-f0-9])([ a- f0-9][a-f0-9])/i", $this->wm_color, $color))
- {
- $red = hexdec($color[1]);
- $green = hexdec( $color [2]);
- $blue = hexdec($color[3]);
- }
- $wm_color = imagecolorallocatealpha($dst_img, $red, $green, $blue, 90);
- imagettftext($dst_img, $this- >wm_size, $this->wm_angle, $this->wm_x, $this->wm_y, $wm_color, $this->wm_fontfile, $this->wm_text);
- }
-
- if ($ this->save_file)
- {
- switch ($this->output_type){
- case 'gif':
- $src_img=ImagePNG($dst_img, $this->save_file);
- Break;
-
- case 'jpeg ':
- $src_img=ImageJPEG($dst_img, $this->save_file, $this->jpeg_quality);
- ブレーク;
-
- case 'png':
- $src_img=ImagePNG($dst_img, $this-> save_file);
- break;
-
- default:
- $src_img=ImageJPEG($dst_img, $this->save_file, $this->jpeg_quality);
- Break
- }
- }
- else
- {
- header( "コンテンツ-type: image/{$this->output_type}");
- switch ($this->output_type){
- case 'gif':
- $src_img=ImagePNG($dst_img);
- Break;
-
- case ' jpeg':
- $src_img=ImageJPEG($dst_img, "", $this->jpeg_quality);
- ブレーク;
-
- case 'png':
- $src_img=ImagePNG($dst_img);
- ブレーク;
-
- デフォルト:
- $src_img=ImageJPEG($dst_img, "", $this->jpeg_quality);
- Break; }
- }
- imagedestroy($dst_img);
-
- }
- function get_type()// 画像ファイルの種類を取得します
- {
- $name_array =explode(".",$this->ファイル名);
- if (preg_match("/.(jpg|jpeg|gif|png)$/", $this->ファイル名, $matches ) )
- {
- $this->input_type = strto lower($matches[1]);
- }
- else
- {
- $this->input_type = "string";
- }
- }
- }
-
-
コードをコピー
|