分享PHP实现图片添加水印 压缩 剪切的封装类
分类:PHP_Python| 发布:raodaor| 查看:167 | 发表时间:2015/9/1
php对图片文件的操作主要是利用GD库扩展。当我们频繁利用php对图片进行操作时,会自然封装很多函数,否则会写太多重复的代码。当有很多对图片的相关函数的时候,我们可以考虑将这些函数也整理一下,因而就有了封装成类的想法。
操作图片主要历经四个步骤:
第一步:打开图片
第二步:操作图片
第三步:输出图片
第四步:销毁图片
1,3,4三个步骤每次都要写,每次又都差不多。真正需要变通的只有操作图片的这一步骤了。操作图片又往往通过1或多个主要的GD函数来完成。
本文封装类里面的四种方法,文字水印(imagettftext()),图片水印(imagecopymerge()),图片压缩,图片剪切(imagecopyresampled()),其余的常用GD函数便不赘述。
直接上代码:
07 | public function __construct( $src ) |
09 | $this ->info= getimagesize ( $src ); |
10 | $this ->type=image_type_to_extension( $this ->info[ '2' ],false); |
11 | $fun = "imagecreatefrom{$this->type}" ; |
12 | $this ->image= $fun ( $src ); |
24 | public function fontMark( $font , $content , $size , $col , $location , $angle =0){ |
25 | $col =imagecolorallocatealpha( $this ->image, $col [ '0' ], $col [ '1' ], $col [ '2' ], $col [ '3' ]); |
26 | imagettftext( $this ->image, $size , $angle , $location [ '0' ], $location [ '1' ], $col , $font , $content ); |
35 | public function imageMark( $imageMark , $dst , $pct ){ |
36 | $info2 = getimagesize ( $imageMark ); |
37 | $type =image_type_to_extension( $info2 [ '2' ],false); |
38 | $func2 = "imagecreatefrom" . $type ; |
39 | $water = $func2 ( $imageMark ); |
40 | imagecopymerge( $this ->image, $water , $dst [0], $dst [1], 0, 0, $info2 [ '0' ], $info2 [ '1' ], $pct ); |
48 | public function thumb( $thumbSize ){ |
49 | $imageThumb =imagecreatetruecolor( $thumbSize [0], $thumbSize [1]); |
50 | imagecopyresampled( $imageThumb , $this ->image, 0, 0, 0, 0, $thumbSize [0], $thumbSize [1], $this ->info[ '0' ], $this ->info[ '1' ]); |
51 | imagedestroy( $this ->image); |
52 | $this ->image= $imageThumb ; |
60 | public function cut( $cutSize , $location ){ |
61 | $imageCut =imagecreatetruecolor( $cutSize [0], $cutSize [1]); |
62 | imagecopyresampled( $imageCut , $this ->image, 0, 0, $location [0], $location [1], $cutSize [0], $cutSize [1], $cutSize [0], $cutSize [1]); |
63 | imagedestroy( $this ->image); |
64 | $this ->image= $imageCut ; |
70 | public function show(){ |
71 | header( "content-type:" . $this ->info[ 'mime' ]); |
72 | $funn = "image" . $this ->type; |
80 | public function save( $newname ){ |
81 | header( "content-type:" . $this ->info[ 'mime' ]); |
82 | $funn = "image" . $this ->type; |
83 | $funn ( $this ->image, $newname . '.' . $this ->type); |
85 | public function __destruct(){ |
86 | imagedestroy( $this ->image); |
如果还需要其他操作,只需要再往这个类里面添加就好啦~~
给图片添加水印代码:
先看文件check_image_addwatermark.php代码
003 | $db = mysql_connect( 'localhost' , 'root' , 'Ctrip07185419' ) or die ( 'can not connect to database' ); |
004 | mysql_select_db( 'moviesite' , $db ) or die (mysql_error( $db )); |
006 | $dir = 'D:\Serious\phpdev\test\images' ; |
008 | putenv( 'GDFONTPATH=' . 'C:\Windows\Fonts' ); |
011 | if ( $_POST [ 'submit' ] == 'Upload' ) |
013 | if ( $_FILES [ 'uploadfile' ][ 'error' ] != UPLOAD_ERR_OK) |
015 | switch ( $_FILES [ 'uploadfile' ][ 'error' ]) |
017 | case UPLOAD_ERR_INI_SIZE: |
018 | die ( 'The uploaded file exceeds the upload_max_filesize directive' ); |
020 | case UPLOAD_ERR_FORM_SIZE: |
021 | die ( 'The upload file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form' ); |
023 | case UPLOAD_ERR_PARTIAL: |
024 | die ( 'The uploaded file was only partially uploaded' ); |
026 | case UPLOAD_ERR_NO_FILE: |
027 | die ( 'No file was uploaded' ); |
029 | case UPLOAD_ERR_NO_TMP_DIR: |
030 | die ( 'The server is missing a temporary folder' ); |
032 | case UPLOAD_ERR_CANT_WRITE: |
033 | die ( 'The server fail to write the uploaded file to the disk' ); |
035 | case UPLOAD_ERR_EXTENSION: |
036 | die ( 'The upload stopped by extension' ); |
040 | $image_caption = $_POST [ 'caption' ]; |
041 | $image_username = $_POST [ 'username' ]; |
042 | $image_date = date ( 'Y-m-d' ); |
043 | list( $width , $height , $type , $attr ) = getimagesize ( $_FILES [ 'uploadfile' ][ 'tmp_name' ]); |
044 | $error = 'The file you upload is not a supported filetype' ; |
048 | $image = imagecreatefromgif( $_FILES [ 'uploadfile' ][ 'tmp_name' ]) or die ( $error ); |
051 | $image = imagecreatefromjpeg( $_FILES [ 'uploadfile' ][ 'tmp_name' ]) or die ( $error ); |
054 | $image = imagecreatefrompng( $_FILES [ 'uploadfile' ][ 'tmp_name' ]) or die ( $error ); |
059 | $query = 'insert into images(image_caption,image_username,image_date) values("' . $image_caption . '" , "' . $image_username . '","' . $image_date . '")' ; |
060 | $result = mysql_query( $query , $db ) or die (mysql_error( $db )); |
061 | $last_id = mysql_insert_id(); |
065 | $image_id = $last_id ; |
066 | imagejpeg( $image , $dir . '/' . $image_id . '.jpg' ); |
067 | imagedestroy( $image ); |
071 | $query = 'select image_id,image_caption,image_username,image_date from images where image_id=' . $_POST [ 'id' ]; |
072 | $result = mysql_query( $query , $db ) or die (mysql_error( $db )); |
073 | extract(mysql_fetch_assoc( $result )); |
074 | list( $width , $height , $type , $attr ) = getimagesize ( $dir . '/' . $image_id . '.jpg' ); |
077 | if ( $_POST [ 'submit' ] == 'Save' ) |
079 | if (isset( $_POST [ 'id' ]) && ctype_digit( $_POST [ 'id' ]) && file_exists ( $dir . '/' . $_POST [ 'id' ]. '.jpg' )) |
081 | $image = imagecreatefromjpeg( $dir . '/' . $_POST [ 'id' ]. '.jpg' ); |
085 | die ( 'invalid image specified' ); |
087 | $effect = (isset( $_POST [ 'effect' ])) ? $_POST [ 'effect' ] : -1; |
090 | case IMG_FILTER_NEGATE: |
091 | imagefilter( $image , IMG_FILTER_NEGATE); |
093 | case IMG_FILTER_GRAYSCALE: |
094 | imagefilter( $image , IMG_FILTER_GRAYSCALE); |
096 | case IMG_FILTER_EMBOSS: |
097 | imagefilter( $image , IMG_FILTER_EMBOSS); |
099 | case IMG_FILTER_GAUSSIAN_BLUR: |
100 | imagefilter( $image , IMG_FILTER_GAUSSIAN_BLUR); |
103 | if (isset( $_POST [ 'emb_caption' ])) |
105 | imagettftext( $image , 12 , 0 , 20 , 20 , 0 , $font , $image_caption ); |
107 | if (isset( $_POST [ 'emb_logo' ])) |
110 | list( $wmk_width , $wmk_height ) = getimagesize ( 'images/logo.png' ); |
111 | $x = ( $width - $wmk_width ) / 2; |
112 | $y = ( $height - $wmk_height )/2; |
113 | $wmk = imagecreatefrompng( 'images/logo.png' ); |
115 | imagecopymerge( $image , $wmk , $x , $y , 0 , 0 , $wmk_width , $wmk_height , 20); |
119 | imagejpeg( $image , $dir . '/' . $_POST [ 'id' ]. '.jpg' , 100); |
123 | <title>Here is your pic!</title> |
126 | <h1>Your image has been saved!</h1> |
127 | <img src= "images/<?php echo $_POST['id'];?>.jpg" alt= "" /> |
137 | <title>Here is your pic!</title> |
140 | <h1>So how does it feel to be famous?</h1> |
141 | <p>Here is the picture you just uploaded to your servers:</p> |
142 | <!--<img src= "images/<?php echo $imagename;?>" alt= "" style= "float:left;" |
147 | if ( $_POST [ 'submit' ] == 'Upload' ) |
149 | $imagename = 'images/' . $image_id . '.jpg' ; |
153 | $imagename = 'image_effect.php?id=' . $image_id . '&e=' . $_POST [ 'effect' ]; |
154 | if (isset( $_POST [ 'emb_caption' ])) |
156 | $imagename .= '&capt=' .urlencode( $image_caption ); |
158 | if (isset( $_POST [ 'emb_logo' ])) |
160 | $imagename .= '&logo=1' ; |
164 | <img src= "<?php echo $imagename;?>" style= "float:left;" alt= "" /> |
167 | <td>Image save as :</td> |
168 | <td><?php $image_id ?></td> |
172 | <td><?php echo $height ;?></td> |
176 | <td><?php echo $width ;?></td> |
179 | <td>Upload date :</td> |
180 | <td><?php echo $image_date ;?></td> |
183 | <p>You may apply a special effect to your image from the list of option below. Note:saving an image with any of the filters applied <em>can be undone</em> </p> |
184 | <form action= "<?php echo $_SERVER['PHP_SELF'];?>" method= "post" > |
186 | <input type= "hidden" name= "id" value= "<?php echo $image_id;?>" /> |
187 | Filter:<select name= "effect" id= "" > |
188 | <option value= "-1" >None</option> |
190 | echo '<option value="' .IMG_FILTER_GRAYSCALE. '" ' ; |
191 | if (isset( $_POST [ 'effect' ]) && $_POST [ 'effect' ] == IMG_FILTER_GRAYSCALE) |
193 | echo 'selected="selected"' ; |
195 | echo ' >Black and white</option>' ; |
196 | echo '<option value="' .IMG_FILTER_GAUSSIAN_BLUR. '"' ; |
197 | if (isset( $_POST [ 'effect' ]) && $_POST [ 'effect' ] == IMG_FILTER_GAUSSIAN_BLUR) |
199 | echo ' selected="selected"' ; |
201 | echo '>Blur</option>' ; |
202 | echo '<option value="' .IMG_FILTER_EMBOSS. '"' ; |
203 | if (isset( $_POST [ 'effect' ]) && $_POST [ 'effect' ] == IMG_FILTER_EMBOSS) { |
204 | echo 'selected="selected"' ; |
206 | echo '>Emboss</option>' ; |
207 | echo '<option value="' .IMG_FILTER_NEGATE. '"' ; |
208 | if (isset( $_POST [ 'effect' ]) && $_POST [ 'effect' ] == IMG_FILTER_NEGATE) { |
209 | echo 'selected="selected"' ; |
211 | echo '>Negative</option>' ; |
216 | echo '<input type="checkbox" name="emb_caption"' ; |
217 | if (isset( $_POST [ 'emb_caption' ])) |
219 | echo ' checked="checked"' ; |
221 | echo ' />Embed caption in image?' ; |
225 | echo '<input type="checkbox" name="emb_logo" ' ; |
226 | if (isset( $_POST [ 'emb_logo' ])) |
228 | echo 'checked="checked"' ; |
230 | echo ' />Embed watermarked logo in image?' ; |
232 | <input type= "submit" value= "Preview" name= "submit" /> |
235 | <input type= "submit" value= "Save" name= "submit" /> |
这里面主要是添加水印选项,如果选中添加水印则将logo.png作为水印图片和原来的图片合并在一起。
在预览文件中添加了对应的逻辑,代码如下:
02 | $dir = 'D:\Serious\phpdev\test\images' ; |
04 | putenv( 'GDFONTPATH=' . 'C:\Windows\Fonts' ); |
06 | if (isset( $_GET [ 'id' ]) && ctype_digit( $_GET [ 'id' ]) && |
07 | file_exists ( $dir . '/' . $_GET [ 'id' ]. '.jpg' )) |
09 | $image = imagecreatefromjpeg( $dir . '/' . $_GET [ 'id' ]. '.jpg' ); |
13 | die ( 'invalid image specified' ); |
15 | $effect = (isset( $_GET [ 'e' ])) ? $_GET [ 'e' ] : -1; |
18 | case IMG_FILTER_NEGATE: |
19 | imagefilter( $image , IMG_FILTER_NEGATE); |
21 | case IMG_FILTER_GRAYSCALE: |
22 | imagefilter( $image , IMG_FILTER_GRAYSCALE); |
24 | case IMG_FILTER_EMBOSS: |
25 | imagefilter( $image , IMG_FILTER_EMBOSS); |
27 | case IMG_FILTER_GAUSSIAN_BLUR: |
28 | imagefilter( $image , IMG_FILTER_GAUSSIAN_BLUR); |
31 | if (isset( $_GET [ 'capt' ])) |
34 | imagettftext( $image , 12, 0, 20, 20, 0, $font , $_GET [ 'capt' ]); |
36 | if (isset( $_GET [ 'logo' ])) |
38 | list( $widht , $height ) = getimagesize ( $dir . '/' . $_GET [ 'id' ]. '.jpg' ); |
39 | list( $wmk_width , $wmk_height ) = getimagesize ( 'images/logo.png' ); |
40 | $x = ( $widht - $wmk_width ) / 2; |
41 | $y = ( $height - $wmk_height ) / 2; |
42 | $wmk = imagecreatefrompng( 'images/logo.png' ); |
43 | imagecopymerge( $image , $wmk , $x , $y , 0 , 0 , $wmk_width , $wmk_height , 20); |
46 | header( 'Content-Type:image/jpeg' ); |
47 | imagejpeg( $image , '' , 100); |
最后上传的水印图片效果如下:

注意主要的逻辑就是通过 imagecopymerge() 方法把两个图片合并在一起造成水印效果。来看看这个方法的方法原型和参数:
1 | bool imagecopymerge ( resource $dst_im , resource $src_im , int $dst_x , int $dst_y , int $src_x , int $src_y , int $src_w , int $src_h , int $pct ) |
将 src_im 图像中坐标从 src_x,src_y 开始,宽度为 src_w,高度为 src_h 的一部分拷贝到 dst_im 图像中坐标为 dst_x 和 dst_y 的位置上。两图像将根据 pct 来决定合并程度,其值范围从 0 到 100。当 pct = 0 时,实际上什么也没做,当为 100 时对于调色板图像本函数和 imagecopy() 完全一样,它对真彩色图像实现了 alpha 透明。