ホームページ  >  記事  >  バックエンド開発  >  画像のサムネイルを生成する PHP プログラム_PHP チュートリアル

画像のサムネイルを生成する PHP プログラム_PHP チュートリアル

WBOY
WBOYオリジナル
2016-07-13 10:46:08776ブラウズ

最も一般的に使用されるサムネイルは、画像をアップロードするときに小さな画像を生成することです。これにより、画像のサイズやウェブサイト全体の美しさに影響する問題を効果的に解決できます。以下で紹介する生成された画像サムネイル クラスは、画像のアップロードをサポートしていません。最初にアップロードしてから、このクラスを呼び出して操作する必要があります。

//次のクラスを使用して画像のサムネイルを生成します。

コードは次のとおりです コードをコピー

クラスサイズ変更画像
{
//画像タイプ
var $type;
//実際の幅
var $width;
//実際の身長
var $height;
//変更された幅
var $resize_width;
//変更後の高さ
var $resize_height;
//画像をトリミングするかどうか
var $cut;
//ソース画像
var $srcimg;
//対象の画像アドレス
var $dstimg;
//一時的に作成した画像
var $im;

関数 Resizeimage($img, $wid, $hei,$c,$dstpath)
{
$this->srcimg = $img;
$this->resize_width = $wid;
$this->resize_height = $hei;
$this->cut = $c;
//画像の種類

$this->type = strto lower(substr(strrchr($this->srcimg,"."),1));

// 画像を初期化します
$this->initi_img();
//対象の画像アドレス
$this -> dst_img($dstpath);
//--
$this->width = imagex($this->im);
$this->height = imagey($this->im);
//画像を生成
$this->newimg();
ImageDestroy ($this->im);
}
関数 newimg()
{
//変更された画像の割合
$resize_ratio = ($this->resize_width)/($this->resize_height);
//実際の画像の比率
$ratio = ($this->幅)/($this->高さ);
if(($this->cut)=="1")
// 画像をトリミングします
{
if($ratio>=$resize_ratio)
// 高優先度
{
$newimg = imagecreatetruecolor($this->resize_width,$this->resize_height);
imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, $this->resize_width,$this-

>resize_height, (($this->height)*$resize_ratio), $this->height);
                ImageJpeg ($newimg,$this->dstimg);
            }
            if($ratio             //宽度优先
            {
                $newimg = imagecreatetruecolor($this->resize_width,$this->resize_height);
                imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, $this->resize_width, $this-

>resize_height、$this->width、(($this->width)/$resize_ratio));
                ImageJpeg ($newimg,$this->dstimg);
            }
        }
        それ以外
        //不裁图
        {
            if($ratio>=$resize_ratio)
            {
                $newimg = imagecreatetruecolor($this->resize_width,($this->resize_width)/$ratio);
                imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, $this->resize_width, ($this-

)

>resize_width)/$ratio、$this->幅、$this->高さ);
                ImageJpeg ($newimg,$this->dstimg);
            }
            if($ratio             {
                $newimg = imagecreatetruecolor(($this->resize_height)*$ratio,$this->resize_height);
                imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, ($this->resize_height)*$ratio,

$this->resize_height、$this->幅、$this->高さ);
                ImageJpeg ($newimg,$this->dstimg);
            }
        }
    }
    //初期化图象
    関数 initi_img()
    {
        if($this->type=="jpg")
        {
            $this->im = imagecreatefromjpeg($this->srcimg);
        }
        if($this->type=="gif")
        {
            $this->im = imagecreatefromgif($this->srcimg);
        }
        if($this->type=="png")
        {
            $this->im = imagecreatefrompng($this->srcimg);
        }
    }
    //图象目标地址
    関数 dst_img($dstpath)
    {
        $full_length = strlen($this->srcimg);

$type_length = strlen($this->type);
        $name_length = $full_length-$type_length;


$name = substr($this->srcimg,0,$name_length-1);
$this->dstimg = $dstpath;


//エコー $this->dstimg;
}
}
?>

クラスのメソッドを呼び出す

$resizeimage = new assignimage("画像ソースファイルアドレス", "200", "100", "0","サムネイルアドレス");

//上記の文を使用してサムネイルを生成するだけです。ソース ファイルとサムネイルのアドレスは同じにすることができ、200 と 100 はそれぞれ幅と高さを表します

例 2

PHP サムネイルは同じ比率で可逆圧縮され、空白領域を補色で埋めることができます

コードは次のとおりです コードをコピー

error_reporting( E_ALL );

//テスト
imagezoom('1.jpg', '2.jpg', 400, 300, '#FFFFFF');

/*
PHPのサムネイル関数:
同じ比率のロスレス圧縮、補色で塗りつぶすことが可能 著者: Andy
ホスティング形式:
bmp、jpg、gif、png
パラメータ:
@Srcimage: 縮小される画像
@Dstimage: 写真は保存します
@dst_width: 幅を小さくします
@dst_height: 高さを減らす
@backgroundcolor: 補助色: #FFFFFF は 6 ビットをサポートしますが、3 ビットはサポートしません
*/
function imagezoom( $srcimage, $dstimage, $dst_width, $dst_height, $backgroundcolor ) {

// ファイル名が文字化けしています
if (PHP_OS == 'WINNT') {
$srcimage = iconv('UTF-8', 'GBK', $srcimage);
$dstimage = iconv('UTF-8', 'GBK', $dstimage);
}

$dstimg = imagecreatetruecolor( $dst_width, $dst_height );
$color = imagecolorallocate($dstimg
, hexdec(substr($backgroundcolor, 1, 2))
, hexdec(substr($backgroundcolor, 3, 2))
, hexdec(substr($backgroundcolor, 5, 2))
);
Imagefill($dstimg, 0, 0, $color);

If ( !$arr=getimagesize($srcimage) ) {
echo "サムネイルを生成するファイルが存在しません";
終了します;
}

$src_width = $arr[0];
$src_height = $arr[1];
$srcimg = null;
$method = getcreatemethod( $srcimage );
If ( $method ) {
eval( '$srcimg = ' . $method . ';' );
}

$dst_x = 0;
$dst_y = 0;
$dst_w = $dst_width;
$dst_h = $dst_height;
If ( ($dst_width / $dst_height - $src_width / $src_height) > 0 ) {
$dst_w = $src_width * ( $dst_height / $src_height );
$dst_x = ( $dst_width - $dst_w ) / 2;
elseif (($dst_width / $dst_height - $src_width / $src_height) < 0 ) {
$dst_h = $src_height * ( $dst_width / $src_width );
$dst_y = ( $dst_height - $dst_h ) / 2;
}

imagecopyresampled($dstimg, $srcimg, $dst_x
        、$dst_y、0、0、$dst_w、$dst_h、$src_width、$src_height);
   
    // 保存格式
    $arr = 配列(
        'jpg' => 'imagejpeg'
        , 'jpeg' => 'imagejpeg'
        , 'png' => 'imagepng'
        , 'gif' => 「イメージGIF」
        , 'bmp' => 'イメージbmp'
    );
    $suffix = strto lower( array_pop(explode('.', $dstimage ) ) );
    if (!in_array($suffix, array_keys($arr)) ) {
        echo "保存された文書名错误";
        終了します;
    } その他 {
        eval( $arr[$suffix] . '($dstimg, "'.$dstimage.'");' );
    }
   
    imagejpeg($dstimg, $dstimage);
   
    imagedestroy($dstimg);
    imagedestroy($srcimg);
   
}


function getcreatemethod( $file ) {
        $arr = 配列(
                '474946' => 「imagecreatefromgif('$file')」
                、'FFD8FF' => 「imagecreatefromjpeg('$file')」
                、'424D' => 「imagecreatefrombmp('$file')」
                、'89504E' => 「imagecreatefrompng('$file')」
        );
        $fd = fopen( $file, "rb" );
        $data = fread( $fd, 3 );
       
        $data = str2hex( $data );
       
        if ( array_key_exists( $data, $arr ) ) {
                $arr[$data]を返す;
        elseif ( array_key_exists( substr($data, 0, 4), $arr ) ) {
                return $arr[substr($data, 0, 4)];
        } その他 {
                false を返します;
        }
}

関数 str2hex( $str ) {
        $ret = "";
       
        for( $i = 0; $i                 $ret .= ord($str[$i]) >= 16 ? strval( dechex( ord($str[$i]) ) )
                        :「0」。 strval( dechex( ord($str[$i]) ) );
        }
       
        return strtoupper( $ret );
}

// BMP 创建関数数 php本身無し
関数 imagecreatefrombmp($filename)
{
   if (! $f1 = fopen($filename,"rb")) return FALSE;

$FILE = unpack("vfile_type/Vfile_size/Vreserved/Vbitmap_offset", fread($f1,14));
   if ($FILE['file_type'] != 19778) 戻り値 FALSE;

$BMP = unpack('Vheader_size/Vwidth/Vheight/vplanes/vbits_per_pixel'.
                 '/Vcompression/Vsize_bitmap/Vhoriz_resolution'.
                 '/Vvert_resolution/Vcolors_used/Vcolors_ important', fread($f1,40));
   $BMP['colors'] = pow(2,$BMP['bits_per_pixel']);
   if ($BMP['size_bitmap'] == 0) $BMP['size_bitmap'] = $FILE['file_size'] - $FILE['bitmap_offset'];
   $BMP['bytes_per_pixel'] = $BMP['bits_per_pixel']/8;
   $BMP['bytes_per_pixel2'] = ceil($BMP['bytes_per_pixel']);
   $BMP['decal'] = ($BMP['width']*$BMP['bytes_per_pixel']/4);
   $BMP['decal'] -= フロア($BMP['width']*$BMP['bytes_per_pixel']/4);
   $BMP['デカール'] = 4-(4*$BMP['デカール']);
   if ($BMP['decal'] == 4) $BMP['decal'] = 0;
  
   $PALETTE = array();
   if ($BMP['colors']    {
    $PALETTE = unpack('V'.$BMP['colors'], fread($f1,$BMP['colors']*4));
   }
  
   $IMG = fread($f1,$BMP['size_bitmap']);
   $VIDE = chr(0);

$res = imagecreatetruecolor($BMP['width'],$BMP['height']);
   $P = 0;
   $Y = $BMP['高さ']-1;
   while ($Y >= 0)
   {
        $X=0;
        while ($X         {
         if ($BMP['bits_per_pixel'] == 24)
            $COLOR = unpack("V",substr($IMG,$P,3).$VIDE);
         elseif ($BMP['bits_per_pixel'] == 16)
         {
            $COLOR = unpack("n",substr($IMG,$P,2));
            $COLOR[1] = $パレット[$COLOR[1]+1];
         }
         elseif ($BMP['bits_per_pixel'] == 8)
         {
            $COLOR = unpack("n",$VIDE.substr($IMG,$P,1));
            $COLOR[1] = $パレット[$COLOR[1]+1];
         }
         elseif ($BMP['bits_per_pixel'] == 4)
         {
            $COLOR = unpack("n",$VIDE.substr($IMG,floor($P),1));
            if (($P*2)%2 == 0) $COLOR[1] = ($COLOR[1] >> 4) ;それ以外の場合 $COLOR[1] = ($COLOR[1] & 0x0F);
            $COLOR[1] = $パレット[$COLOR[1]+1];
         }
         elseif ($BMP['bits_per_pixel'] == 1)
         {
            $COLOR = unpack("n",$VIDE.substr($IMG,floor($P),1));
            if (($P*8)%8 == 0) $COLOR[1] = $COLOR[1] >>7;
            elseif (($P*8)%8 == 1) $COLOR[1] = ($COLOR[1] & 0x40)>>6;
            elseif (($P*8)%8 == 2) $COLOR[1] = ($COLOR[1] & 0x20)>>5;
            elseif (($P*8)%8 == 3) $COLOR[1] = ($COLOR[1] & 0x10)>>4;
            elseif (($P*8)%8 == 4) $COLOR[1] = ($COLOR[1] & 0x8)>>3;
            elseif (($P*8)%8 == 5) $COLOR[1] = ($COLOR[1] & 0x4)>>2;
            elseif (($P*8)%8 == 6) $COLOR[1] = ($COLOR[1] & 0x2)>>1;
            elseif (($P*8)%8 == 7) $COLOR[1] = ($COLOR[1] & 0x1);
            $COLOR[1] = $パレット[$COLOR[1]+1];
         }
         それ以外
            FALSE を返します;
         imagesetpixel($res,$X,$Y,$COLOR[1]);
         $X++;
         $P += $BMP['ピクセルあたりのバイト数'];
        }
        $Y--;
        $P+=$BMP['デカール'];
   }
   fclose($f1);

$res を返す;
}
// BMP保存機能、php自体なし
関数 imagebmp ($im, $fn = false)
{
    if (!$im) return false;
           
    if ($fn === false) $fn = 'php://output';
    $f = fopen($fn, "w");
    if (!$f) が false を返す;
           
    $biWidth = 画像x($im);
    $biHeight = imagey($im);
    $biBPLine = $biWidth * 3;
    $biStride = ($biBPLine + 3) & ~3;
    $biSizeImage = $biStride * $biHeight;
    $bfOffBits = 54;
    $bfSize = $bfOffBits + $biSizeImage;
           
    fwrite($f, 'BM', 2);
    fwrite ($f, Pack('VvvV', $bfSize, 0, 0, $bfOffBits));
           
    fwrite ($f, Pack('VVVvvVVVVVV', 40, $biWidth, $biHeight, 1, 24, 0, $biSizeImage, 0, 0, 0, 0));
           
    $numpad = $biStride - $biBPLine;
    for ($y = $biHeight - 1; $y >= 0; --$y)
    {
        for ($x = 0; $x         {
            $col = imagecolorat($im, $x, $y);
            fwrite ($f, Pack('V', $col), 3);
        }
        for ($i = 0; $i             fwrite ($f, Pack('C', 0));
    }
    fclose ($f);
    true を返します。 }

?>

要約すると、最初のクラス ファイルは 2 番目のクラス ファイルほど良くありません。最初に画像を生成した後、画像が少しぼやけますが、後者で生成されたクラスは高品質であるためです。

http://www.bkjia.com/PHPjc/632959.htmlwww.bkjia.comtru​​ehttp://www.bkjia.com/PHPjc/632959.html技術記事サムネイルは、画像サイズの問題や Web サイト全体の美しさに影響を与える問題を解決できるように、画像をアップロードして小さなサムネイルを作成するときに最も一般的に使用されます。
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。