-
-
/** サムネイル生成クラス、imagemagick および gd ライブラリ処理をサポート - * 日付: 2013-07-15
- * 著者: fdipzone
- * Ver: 1.2
- * edit : bbs.it-home.org
- * Func:
- * public set_config: パラメータの設定
- * public create_thumb: サムネイル画像の生成
- * private fit: サムネイル画像
- * private Crop: 画像のトリミング
- * private gd_fit: GD ライブラリのサムネイル画像
- * private gd_crop: GDライブラリのトリミング画像
- * private get_size: 変換するサイズを取得
- * private get_crop_offset: トリミングのオフセットを取得
- * private add_watermark: ウォーターマークを追加
- * private check_handler: プログラムが実行されたかどうかの判定処理インストールされています
- * private create_dirs: ディレクトリを作成します
- * private contains: パラメーターが存在するかどうかを確認します
- * private to_log: ログを記録します
- * private hex2rgb: 16 進数のカラーを rgb カラーに変換します
- * private get_file_ext: 画像の種類を取得します
- *
- * ver : 1.1 GDライブラリ処理を追加
- * ver: 1.2 幅と高さのエラーパラメータ処理を追加
- * 画像の色空間がRGBでない場合のRGB処理への変換を追加
- * 切り抜きを使用してgifとして保存する際に、透明な無効領域が発生する問題を修正+repage パラメーターを使用して、透明な無効領域を削除するだけです
- *
- * ヒント: imagemagick を使用することをお勧めします
- * GD ライブラリは透明ウォーターマークをサポートしていません。透明ウォーターマークを使用する必要がある場合は、ウォーターマーク画像を透明にしてください。
- * GD ライブラリが透明な透かしを含む GIF を出力する場合、問題が発生します。
- */
-
- class PicThumb{ // クラス開始
-
- private $_log = null; // ログファイル
- private $_handler = null // 画像処理用プログラム、imagemagick/gd ライブラリ
- private $_type = 'fit ' ; // フィットまたはトリミング
- private $_source = null; // 元の画像のパス
- private $_watermark = null; // ウォーターマーク画像
- 画像の透明度、gd ライブラリはサポートしていません
- private $_gravity = 'SouthEast' // ウォーターマークの配置場所 NorthWest、North、NorthEast、West、Center、East、SouthWest、South、SouthEast
- private $_geometry = '+10+ 10'; ; // ウォーターマークの配置、gd ライブラリはサポートしていません
- private $_croppos = 'TL'; // スクリーンショットの場所 TL TM TR ML MM MR BL BM BR
- private $_bgcolor = null // 塗りつぶされた背景色
- private $_quality = 90; // 生成される画質
- private $_width = null; // 領域の幅を指定
-
-
- // 初期化
- public function __construct($logfile=' '){
- if($logfile!=''){
- $this->_log = $logfile;
- }
- }
-
-
- // パラメータを設定
- public function set_config($param=array()){
- $this-> ;_handler = $this->exists($param, 'handler')? strto lower($param['handler']) : null; $this->_type = $this->exists( $param, ' type')? strto lower($param['type']) : 'fit'; $this->_watermark = $this->exists($param, 'watermark')? null;
- $this->_opacity = $this->exists($param, 'opacity') : 75;
- $this->_gt;gt;exists( $param, '重力')? $param['重力'] : '南東'; $this->_geometry = $this->exists($param, 'ジオメトリ')? : '+10+10';
- $this->_croppos = $this->exists($param, 'croppos') : 'TL'; = $this->exists($param, 'bgcolor')? $param['bgcolor'] : null;
- $this->_quality = $this->exists($param, 'quality ')? param['quality'] : 90;
- $this->_width = $this->exists($param, 'width') : null; $this->exists($param, 'height')? $param['height'] : null;
- }
- /**サムネイル画像を作成します
- * @param String $source オリジナル画像
- * @param String $dest ターゲット画像
- * @return boolean
- */
- public function create_thumb($source, $ dest){
-
- // 使用されているハンドラーがインストールされているかどうかを確認します
- if(!$this->check_handler()){
- $this->to_log('ハンドラーがインストールされていません');
- return false }
-
- // 判定します。エリアの幅と高さが正しいかどうか
- if(!is_numeric($this->_width) || !is_numeric($this->_height) || $this->_width<=0 || $this - >_height<=0){
- $this->to_log('幅または高さが無効です');
- return false; }
-
- // ソースファイルが存在するかどうかを判断します
- if(!file_exists($source) ){
- $this->to_log($source.' が存在しません');
- return false }
-
- // ターゲットファイルパスを作成します
- if(!$this->create_dirs($dest)){
- $this ->to_log(dirname($dest).' 作成失敗');
- return false; }
- $this->_source = $source; // ソースファイル
- $this->_dest = $ dest; // 対象ファイル
-
- // 画像を処理
- switch($this->_type){
- case 'fit':
- if($this->handler=='imagemagick'){
- return $this -> fit();
- }else{
- return $this->gd_fit();
-
- case 'crop':
- if($this->_handler=='imagemagick')
- return $this->crop();
- }else{
- return $this->gd_crop();
-
- デフォルト:
- $this->to_log($this->_type. ' フィットしていない');
- false を返します }
-
- }
-
-
- /**画像を比例的に圧縮または引き伸ばします
- * @return boolean
- */
- private function fit(){
-
- // 背景を塗りつぶすかどうかを決定
- $bgcolor = ($this->_bgcolor!=null)
- sprintf(" -background? '% s' -gravity center -extent '%sx%s' ", $this->_bgcolor, $this->_width, $this->_height) : "";
-
- // 変換するかどうかを決定RGB へ
- $source_info = getimagesize($this->_source);
- $colorspace = (!isset($source_info['channels']) || $source_info['channels']!=3)? ' : '';
-
- // コマンドライン
- $cmd = sprintf("convert -resize '%sx%s' '%s' %s -quality %s %s '%s'", $this-> _width, $this->height, $this->_source, $bgcolor, $this->_quality, $colorspace, $this->_dest);
-
- // 実行されたコマンドを記録します
- $this-> ;to_log ($cmd);
-
- // コマンドを実行
- exec($cmd);
-
- // ウォーターマークを追加
- $this->add_watermark($this->_dest);
-
- return is_file($this-) > _dest)? true : false;
-
- }
-
-
- /**画像をトリミング
- * @return boolean
- */
- プライベート関数 Crop(){
-
- // 生成された画像サイズを取得
- list($pic_w, $pic_h) = $ this- >get_size();
-
- // スクリーンショットのオフセットを取得
- list($offset_w, $offset_h) = $this->get_crop_offset($pic_w, $pic_h); // 変換するかどうかを決定RGB へ
- $source_info = getimagesize($this->_source);
- $colorspace = (!isset($source_info['channels']) || $source_info['channels']!=3)? ' : '';
-
- // コマンドライン
- $cmd = sprintf("convert -resize '%sx%s' '%s' -quality %s %s -crop %sx%s+%s+%s +repage ' %s '"、$pic_w、$pic_h、$this->_source、$this->_quality、$colorspace、$this->_width、$this->_height、$offset_w、$offset_h、$this -> ;_dest);
-
- // 実行されたコマンドを記録します
- $this->to_log($cmd);
-
- // コマンドを実行します
- exec($cmd) // ウォーターマークを追加します
- $this ->add_watermark ($this->_dest);
-
- return is_file($this->_dest)? true : false;
-
-
- /**GD ライブラリは画像を比例的に圧縮または引き伸ばします
- * @return boolean
- */
- プライベート関数 gd_fit() {
-
- // 生成された画像サイズを取得します
- list($pic_w, $pic_h) = $this->get_size();
-
- list($owidth, $oheight, $otype) = getimagesize($this-> _source);
-
- switch($otype){
- ケース 1: $source_img = imagecreatefromgif($this->_source);
- ケース 2: $source_img = imagecreatefromjpeg($this->_source);ケース 3: $source_img = imagecreatefrompng($this->_source);
- デフォルト: return false; }
-
- // 画像を比例的に縮小/拡大します
- $new_img = imagecreatetruecolor($pic_w, $pic_h); imagecopyresampled( $new_img, $source_img, 0, 0, 0, 0, $pic_w, $pic_h, $owidth, $oheight);
-
- // 背景を塗りつぶすかどうかを決定します
- if($this->_bgcolor!= null){
- $bg_img = imagecreatetruecolor($this->_width, $this->_height);
- $rgb = $this->hex2rgb($this->_bgcolor);
- $bgcolor =imagecolorallocate($) bg_img, $rgb ['r'], $rgb['g'], $rgb['b']);
- imagefill($bg_img, 0, 0, $bgcolor); (int)( ($this->_width-$pic_w)/2), (int)(($this->_height-$pic_h)/2), 0, 0, $pic_w, $pic_h); $new_img = $ bg_img; }
-
- // 対象画像の種類を取得
- $dest_ext = $this->get_file_ext($this->_dest) // 画像を生成
- switch($dest_ext); ){
- ケース 1: imagegif ($new_img, $this->_dest, $this->_quality);
- ケース 2: imagejpeg($new_img, $this->_dest, $this->_quality) ); ブレーク;
- ケース 3 : imagepng($this->_dest, (int)(($this->_quality-1)/10)); source_img)){
- imagedestroy( $source_img);
- }
-
- if(isset($new_img)){
- imagedestroy($new_img)
- }
-
- // ウォーターマークを追加
- $this->add_watermark($this- >_dest);
-
- return is_file($this->_dest)?
-
- }
-
-
- /**GD ライブラリの写真をトリミング
- * @return boolean
- */
- private function gd_crop(){
-
- // 生成された画像サイズを取得
- list($pic_w, $pic_h) = $this->get_size();
-
- //スクリーンショットのオフセットを取得します
- list($offset_w, $offset_h) = $this->get_crop_offset($pic_w, $pic_h)
-
- list($owidth, $oheight, $otype) = getimagesize($this->) ;_source);
-
- switch($otype){
- ケース 1: $source_img = imagecreatefromgif($this->_source);
- ケース 2: $source_img = imagecreatefromjpeg($this->_source);
- ケース 3: $source_img = imagecreatefrompng($this->_source);
- デフォルト: return false; }
-
- // 画像を比例的に縮小/伸縮します
- $tmp_img = imagecreatetruecolor($pic_w, $pic_h );
- imagecopyresampled($tmp_img, $source_img, 0, 0, 0, 0, $pic_w, $pic_h, $owidth, $oheight);
-
- // 画像をトリミングします
- $new_img = imagecreatetruecolor($this->_width , $this->_height);
- imagecopyresampled($new_img, $tmp_img, 0, 0, $offset_w, $offset_h, $this->_width, $this->_height, $this->_width, $this ->_height);
-
- // 対象画像の種類を取得
- $dest_ext = $this->get_file_ext($this->_dest);
-
- // 画像を生成
- switch($dest_ext){
- ケース 1: imagegif($new_img, $this->_dest, $this->_quality);
- ケース 2: imagejpeg($new_img, $this->_dest, $this->_quality);ブレーク;
- ケース 3: imagepng($new_img, $this->_dest, (int)(($this->_quality-1)/10)); ){Imagedestroy($ source_img); iset($ tmp_img)){$ tmp_img); }
-
- // ウォーターマークを追加します
- $this->add_watermark($this->_dest);
-
- return is_file($this->_dest) }
-
-
- /**ターゲット画像によって生成されたサイズを取得します
- * @return Array $width, $height
- */
- プライベート関数 get_size(){
- list($owidth, $oheight) = getimagesize($this->_source)
- $width = (int)($this->_width); = ( int)($this->_height);
-
- switch($this->_type){
- ケース 'fit':
- $pic_w = $width
- $pic_h = (int)($pic_w*$ oheight/ $owidth);
- if($pic_h>$height){
- $pic_w = (int)($pic_h*$owidth/$oheight); ':
- if($owidth>$oheight){
- $pic_h = $height;
- $pic_w = (int)($pic_h*$owidth/$oheight);
- $pic_w = $width; pic_h = (int)($pic_w*$oheight/$owidth);
- }
- }
-
- return array($pic_w, $pic_h);
-
-
- /**スクリーンショットのオフセットを取得します
- * @param int $pic_w 画像の幅
- * @param int $pic_h 画像の高さ
- * @return Array $offset_w, $offset_h
- */
- プライベート関数 get_crop_offset($pic_w, $pic_h){
- $offset_w = 0;
- $offset_h = 0;
-
- switch(strtoupper($this->_croppos)){
- case 'TL':
- $offset_w = 0;
- $offset_h = 0;
- 休憩;
-
- ケース 'TM':
- $offset_w = (int)(($pic_w-$this->_width)/2);
- $offset_h = 0;
- 休憩;
-
- ケース 'TR':
- $offset_w = (int)($pic_w-$this->_width);
- $offset_h = 0;
- 休憩;
-
- ケース 'ML':
- $offset_w = 0;
- $offset_h = (int)(($pic_h-$this->_height)/2);
- 休憩;
-
- case 'MM':
- $offset_w = (int)(($pic_w-$this->_width)/2);
- $offset_h = (int)(($pic_h-$this->_height)/2);
- 休憩;
-
- ケース 'MR':
- $offset_w = (int)($pic_w-$this->_width);
- $offset_h = (int)(($pic_h-$this->_height)/2);
- 休憩;
-
- ケース 'BL':
- $offset_w = 0;
- $offset_h = (int)($pic_h-$this->_height);
- 休憩;
-
- ケース 'BM':
- $offset_w = (int)(($pic_w-$this->_width)/2);
- $offset_h = (int)($pic_h-$this->_height);
- 休憩;
-
- ケース 'BR':
- $offset_w = (int)($pic_w-$this->_width);
- $offset_h = (int)($pic_h-$this->_height);
- 休憩;
- }
-
- return array($offset_w, $offset_h);
- }
-
-
- /**ウォーターマークを追加します
- * @param String $dest 画像パス
- */
- プライベート関数 add_watermark($dest){
- if($this->_watermark!=null && file_exists($this->_watermark) && file_exists($dest) ){
- list($owidth, $oheight, $otype) = getimagesize($dest);
- list($w, $h, $wtype) = getimagesize($this->_watermark);
-
- // 水印图比原图要小才加水印
- if($w<=$owidth && $h<=$oheight){
-
- if($this->_handler=='imagemagick'){ / / imagemagick 追加水印
-
- $cmd = sprintf("composite -gravity %s -geometry %s -dissolve %s '%s' %s %s", $this->_gt;_gravity, $this->_geometry, $ this->_opacity、$this->_watermark、$dest、$dest);
-
- $this->to_log($cmd);
-
- exec($cmd);
-
- }else{ // gd 追加水印
-
- switch($wtype){
- case 1: $water_img = imagecreatefromgif($this->_watermark);壊す;
- ケース 2: $water_img = imagecreatefromjpeg($this->_watermark);壊す;
- ケース 3: $water_img = imagecreatefrompng($this->_watermark);壊す;
- デフォルト: false を返します。
- }
-
- switch($otype){
- ケース 1: $dest_img = imagecreatefromgif($dest);壊す;
- ケース 2: $dest_img = imagecreatefromjpeg($dest);壊す;
- ケース 3: $dest_img = imagecreatefrompng($dest);壊す;
- デフォルト: false を返します。
- }
-
- // 水印位置
- switch(strto lower($this->_gravity)){
- case 'northwest':
- $posX = 0;
- $posY = 0;
- 休憩;
- '北' の場合:
- $posX = ($owidth - $w) / 2;
- $posY = 0;
- 休憩;
- '北東' の場合:
- $posX = $owidth - $w;
- $posY = 0;
- 休憩;
- ケース 'west':
- $posX = 0;
- $posY = ($oheight - $h) / 2;
- 休憩;
- case 'center':
- $posX = ($owidth - $w) / 2;
- $posY = ($oheight - $h) / 2;
- 休憩;
- case 'east':
- $posX = $owidth - $w;
- $posY = ($oheight - $h) / 2;
- 休憩;
- '南西' の場合:
- $posX = 0;
- $posY = $oheight - $h;
- 休憩;
- '南' の場合:
- $posX = ($owidth - $w) / 2;
- $posY = $oheight - $h;
- 休憩;
- '南東' の場合:
- $posX = $owidth - $w;
- $posY = $oheight - $h;
- 休憩;
- }
-
- imagealphablending($dest_img, true);
- imagecopy($dest_img, $water_img, $posX, $posY, 0, 0, $w, $h);
-
- switch($otype){
- case 1:imagegif($dest_img, $dest, $this->_quality);壊す;
- ケース 2:imagejpeg($dest_img, $dest, $this->_quality);壊す;
- ケース 3:imagepng($dest_img, $dest, (int)(($this->_quality-1)/10));壊す;
- }
-
- if(isset($water_img)){
- imagedestroy($water_img);
- }
-
- if(isset($dest_img)){
- imagedestroy($dest_img);
- }
-
- }
- }
- }
- }
-
-
- /**ハンドラーがインストールされているかどうかを判断します
- * @return boolean
- */
- プライベート関数 check_handler(){
-
- $handler = $this->_handler;
-
- if(!in_array($handler, array('imagemagick', 'gd', null))){
- return false;
- }
-
- // インストールimagemagick があるかどうか
- $imagemagick_installed = strstr(shell_exec('convert -version'),'Version: ImageMagick')!=''?真/偽;
-
- // インストール gd 库があるかどうか
- $gd_installed = function_exists('gd_info')?真/偽;
-
- switch($handler){
- case 'imagemagick':
- return $imagemagick_installed;
- 休憩;
-
- case 'gd':
- $gd_installed を返します。
- 休憩;
-
- case null:
- if($imagemagick_installed){
- $this->_handler = 'imagemagick';
- true を返します。
- }
-
- if($gd_installed){
- $this->_handler = 'gd';
- true を返します。
- }
- 休憩;
- }
-
- false を返します。
- }
-
-
- /**画像ディレクトリを作成します
- * @param String $path
- * @return boolean
- */
- プライベート関数 create_dirs($dest){
- if(!is_dir(dirname($dest))){
- return mkdir(dirname($dest), 0777, true) ;
- }
- true を返します。
- }
-
-
- /**パラメータが存在するかどうかを判断します
- * @param Array $obj 配列オブジェクト
- * @param String $key 検索するキー
- * @return boolean
- */
- プライベート関数が存在します($obj,$key=''){
- if($key==''){
- return isset($obj) && !empty( $obj);
- }else{
- $keys =explode('.',$key);
- for($i=0,$max=count($keys); $i if(isset($obj[$keys[$i]])){
- $obj = $ obj[$keys[$i]];
- }else{
- false を返します。
- }
- }
- return isset($obj) && !empty($obj);
- }
- }
-
-
- /**ログを記録する
- * @param String $msg 記録されるログメッセージ
- */
- プライベート関数 to_log($msg){
- if($this->_log){
- $msg = '['.date('Y-m-d H:i :s').']'.$msg."rn";
- file_put_contents($this->_log, $msg, FILE_APPEND);
- }
- }
-
-
- /**16 進数カラーから RGB カラーへ
- * @param String $color 16 進数カラー
- * @return 配列
- */
- プライベート関数 hex2rgb($hexcolor){
- $color = str_replace('#', '', $hexcolor);
- if (strlen($color) > 3) {
- $rgb = array(
- 'r' => hexdec(substr($color, 0, 2)),
- 'g' => hexdec(substr( $color, 2, 2)),
- 'b' => hexdec(substr($color, 4, 2))
- );
- } else {
- $r = substr($color, 0, 1) . substr($color, 0, 1);
- $g = substr($color, 1, 1) . substr($color, 1, 1);
- $b = substr($color, 2, 1) . substr($color, 2, 1);
- $rgb = array(
- 'r' => hexdec($r),
- 'g' => hexdec($g),
- 'b' => hexdec($b)
- );
- }
- $rgb を返します。
- }
-
-
- /**画像タイプを取得
- * @param String $file 画像パス
- * @return int
- */
- プライベート関数 get_file_ext($file){
- $filename = Basename($file);
- list($name, $ext)=explode('.', $filename);
-
- $ext_type = 0;
-
- switch(strto lower($ext)){
- case 'jpg':
- case 'jpeg':
- $ext_type = 2;
- 休憩;
- ケース 'gif':
- $ext_type = 1;
- 休憩;
- ケース 'png':
- $ext_type = 3;
- 休憩;
- }
-
- $ext_type を返します。
- }
-
- } // 授業終了
-
- ?>
- デモ:
- [php] view plaincopy
- define('ROOT', dirname(__FILE__));
-
- require(ROOT."/PicThumb.class.php");
-
- $logfile = ROOT.'/PicThumb.log';
- $source1 = ROOT.'/pic/source.jpg';
- $dest1 = ROOT.'/pic/1.jpg';
- $dest2 = ROOT.'/pic/2.gif';
- $dest3 = ROOT.'/pic/3.png';
-
- $source2 = ROOT.'/pic/source_cmyk.jpg';
- $dest4 = ROOT.'/pic/4.jpg';
- $dest5 = ROOT.'/pic/5.gif';
- $dest6 = ROOT.'/pic/6.png';
-
- $watermark = ROOT.'/pic/watermark.png';
-
- // 按比例生成缩略図
- $param = array(
- 'type' => 'fit',
- 'width' => 100,
- 'height' => 100,
- );
-
- $obj = 新しい PicThumb($logfile);
- $obj->set_config($param);
- $flag = $obj->create_thumb($source1, $dest1);
-
- if($flag){ // bbs.it-home.org
- echo '';
- }else{
- echo 'サムの作成に失敗しました';
- }
-
- // 按比率生成缩略図、部分不足用#FF0000充填
- $param = array(
- 'type' => 'fit',
- 'width' => 100,
- 'height' => ; 100、
- 'bgcolor' => '#FFFF00'
- ;
-
- $obj = 新しい PicThumb($logfile);
- $obj->set_config($param);
- $flag = $obj->create_thumb($source1, $dest2);
-
- if($flag){
- echo '';
- }else{
- echo 'サムの作成に失敗しました';
- }
-
- // 裁剪250x250の缩略図,裁剪位置は底部中间,水印位置西南,透明度50
- $param = array(
- 'type' => 'crop',
- 'croppos' => 'BM '、
- '幅' => 250、
- 'ウォーターマーク' => 50、
- '重力' => );
-
- $obj = 新しい PicThumb($logfile);
- $obj->set_config($param);
- $flag = $obj->create_thumb($source1, $dest3);
-
- if($flag){
- echo '';
- }else{
- echo 'サムの作成に失敗しました';
- }
-
- // 按比例生成缩略図 CMYK格式
- $param = array(
- 'type' => 'fit',
- 'width' => 100,
- 'height' => 100,
- ) ;
-
- $obj = 新しい PicThumb($logfile);
- $obj->set_config($param);
- $flag = $obj->create_thumb($source2, $dest4);
-
- if($flag){
- echo '';
- }else{
- echo 'サムの作成に失敗しました';
- }
// 比例してサムネイルを生成し、足りない部分を CMYK 形式の #FF0000 で埋めます
- $param = array(
- 'type' => 'fit',
- 'width' => 100、
- '高さ' => 100、
- 'bgcolor' => '#FFFF00'
- );
- $obj->set_config($param); $flag = $obj->create_thumb($source2, $dest5);
-
- if($flag){
- echo '';
- }else{
- echo 'サム失敗の作成';
- }
-
- // 250x250 のサムネイルをトリミングします。トリミング位置は中央下、透かしの位置は南西、透明度は 50 CMYK 形式です
- $param = array(
- 'タイプ' => 'クロップ'、
- '幅' => 250、
- 'ウォーターマーク' =>
- '不透明度' =>
- '重力' =>
- $obj = 新しい PicThumb($logfile);
- $flag = $obj->create_thumb ($source2, $dest6);
-
- if($flag){
- echo ''; {
- echo 'create親指失敗'
- }
- ?
-
-
-
- コードをコピー
-
-
- >>> PHPサムネイル生成クラスのソースコードのダウンロードアドレス
-
-
-
|