- //PHP ウォーターマーク、比例サムネイル、固定高さ、固定幅クラスを追加します。
- class Image_process{
- public $source; //元の画像の幅
- public $source_height; //元の画像の高さ
- public $orign_dirname; //元の画像パスを渡します
- public function __construct($source){
- $this->typeList = array(1=>'gif',2=>'jpg',3=>'png' ) ;
- $ginfo = getimagesize($source);
- $this->source_width = $ginfo[1];
- $this->source_type_id = $ginfo [ 2];
- $this->orign_url = $source;
- $this->orign_dirname = dirname($source);
-
- ;画像 ファイルの形式。PHP で認識されるエンコーディングを返します。
- public function judgeType($type,$source){
- if($type == 1){
- return imagecreatefromgif($source)
- }else; if($ type == 2){
- return imagecreatefromjpeg($source); //jpg
- }else if($type == 3){
- return imagecreatefrompng($source); //png
- }else{
- return false ;
- }
- }
-
- //ウォーターマーク画像を生成
- $linfo = getimagesize($logo)
- $logo_height = $linfo[1]; ;
- $ logo_type_id = $linfo[2];
- $sourceHandle = $this->judgeType($this->source_type_id,$this->orign_url);
- $logoHandle = $this->judgeType($logo_type_id) ,$logo );
- if(!$sourceHandle || !$logoHandle){
- return false }
- $x = ($this->source_width - $logo_width)/2; >source_height - $logo_height)/2;
- imagecopy($sourceHandle,$logoHandle,$x,$y,0,0,$logo_width,$logo_height);
- $newPic = $this->orign_dirname.'water_' .time( ).'.'.$this->typeList[$this->saveImage($sourceHandle,$newPic)){
- imagedestroy($sourceHandle); imagedestroy($ logoHandle);
- }
- }
-
- //固定高さ幅
- public function fixSizeImage($width,$height){
- if($width > $this->source_width) $this->source_width;
- if( $height > $this->source_height) $this->source_height;
- if($width === false){
- $width = Floor($this->source_width / ($this-> ;source_height / $height));
- }
- if($height === false){
- $height = Floor($this->source_height / ($this->source_width / $width)); $this- >tinyImage($width,$height);
- }
-
- //画像を拡大縮小する
- public functionscaleImage($scale){
- $width = Floor($this->source_width * $scale); $height = Floor($this->source_height * $scale);
- $this->tinyImage($width, $height)
- }
-
- // サムネイルを作成する
- public function tinyImage($width,$height); ){
- $tinyImage = imagecreatetruecolor($width,$height);
- $handle = $this->judgeType($this->source_type_id,$this->orign_url);
- if(function_exists('imagecopyresampled'); ){
- imagecopyresampled($tinyImage, $handle, 0, 0, 0, 0, $width, $height, $this->source_width, $this->source_height)
- }else{
- imagecopyresize($tinyImage, $handle , 0, 0, 0, 0, $width, $height, $this->source_width, $this->source_height);
- }
- $newPic = $this->orign_dirname.'thumb_'.time () .'_'.$width."_".$height.".".$this->typeList[$this->source_type_id]
- if($this->saveImage($tinyImage,$) newPic) ){
- imagedestroy($tinyImage);
- imagedestroy($handle)
- }
- }
- // 画像を保存
- private function saveImage($image,$url){
- if(imagejpeg($image,$url) )){
- return true;
- }
- }
- $imgHandle = new Image_process('D:AppServwwwtestgetimg14061907445601.jpg');
- //$imgHandle->waterMakeImage('D:AppServwwwtestgetimgshougongke.png');ウォーターマーク画像を生成
- //$imgHandle->fixSizeImage(200,150); //固定長画像
- $imgHandle->scaleImage(0.2); //等倍化
-
-
- ;
-
-
-
-
PHP、アンプ
|