PHP 画像は比較によってサムネイル画像コードを生成します_PHP チュートリアル

WBOY
リリース: 2016-07-13 10:45:49
オリジナル
789 人が閲覧しました

画像をクリックして拡大/縮小します。これは、PHP チュートリアルの gd ライブラリの関数を使用して実装する必要があります。操作には imagecreatetruecolor() と imagecopyresampled() を使用します。

関数 my_image_resize($src_file, $dst_file, $dst_width=32, $dst_height=32) {

If($dst_width echo "パラメータの幅または高さのエラー !"; 終了(); }
If(!file_exists($src_file)) {
echo $src_file は存在しません
; 終了(); }

$type=exif_imagetype($src_file); $support_type=array(imagetype_jpeg, imagetype_png, imagetype_gif);

if(!in_array($type, $support_type,true)) {

echo "このタイプの画像はサポートされていません! jpg、gif、または png のみをサポートします"; 終了(); }

switch($type) {
        ケース画像タイプ_jpeg :
            $src_img=imagecreatefromjpeg($src_file);
            壊す;
        ケース画像タイプ_png :
            $src_img=imagecreatefrompng($src_file);        
            壊す;
        ケース画像タイプ_gif :
            $src_img=imagecreatefromgif($src_file);
            壊す;
        デフォルト:
            echo "イメージの読み込みエラー!";
            出口();
    }
    $src_w=画像x($src_img);
    $src_h=imagesy($src_img);
    $ratio_w=1.0 * $dst_width/$src_w;
    $ratio_h=1.0 * $dst_height/$src_h;
    if ($src_w         $x = ($dst_width-$src_w)/2;
        $y = ($dst_height-$src_h)/2;
        $new_img=imagecreatetruecolor($dst_width,$dst_height);
        imagecopy($new_img,$src_img,$x,$y,0,0,$dst_width,$dst_height);
        スイッチ($type) {
            ケース画像タイプ_jpeg :
                imagejpeg($new_img,$dst_file,100);
                壊す;
            ケース画像タイプ_png :
                imagepng($new_img,$dst_file);
                壊す;
            ケース画像タイプ_gif :
                imagegif($new_img,$dst_file);
                壊す;
            デフォルト:
                壊す;
        }
    } その他 {
        $dstwh = $dst_width/$dst_height;
        $srcwh = $src_w/$src_h;
        if ($ratio_w             $zoom_w = $dst_width;
            $zoom_h = $zoom_w*($src_h/$src_w);
        } その他 {
            $zoom_h = $dst_height;
            $zoom_w = $zoom_h*($src_w/$src_h);
        }

$zoom_img=imagecreatetruecolor($zoom_w, $zoom_h);
        imagecopyresampled($zoom_img,$src_img,0,0,0,0,$zoom_w,$zoom_h,$src_w,$src_h);
        $new_img=imagecreatetruecolor($dst_width,$dst_height);
        $x = ($dst_width-$zoom_w)/2;
        $y = ($dst_height-$zoom_h)/2+1;
        imagecopy($new_img,$zoom_img,$x,$y,0,0,$dst_width,$dst_height);
        スイッチ($type) {
            ケース画像タイプ_jpeg :
                imagejpeg($new_img,$dst_file,100);
                壊す;
            ケース画像タイプ_png :
                imagepng($new_img,$dst_file);
                壊す;
            ケース画像タイプ_gif :
                imagegif($new_img,$dst_file);
                壊す;
            デフォルト:
                壊す;
        }
    }
}


总结,我们要生成比率生成小图就利用$dstwh = $dst_width/$dst_height;
        $srcwh = $src_w/$src_h;判断して再生成します。

http://www.bkjia.com/PHPjc/632989.html

本当http://www.bkjia.com/PHPjc/632989.html技術記事画像按在比較実行大小,これはphp教程gd库の関数数现实现を取得し,私会はimagecreatetruecolor(),imagecopyresampled()を利用して関数my_image_resiを操作します...
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート