同じ比率でサムネイルを生成する PHP プログラム このプログラムは非常に実装可能ですが、均等な割合でサムネイルを生成するためにのみ使用されます。ファイルをサーバーにアップロードして、必要な友人がそれを参照できるようにする必要があります。
均等な比率でサムネイルを生成する PHP チュートリアル プログラム
このプログラムは非常に実装可能ですが、均等な割合でサムネイルを生成するためにのみ使用されます。ファイルをサーバーにアップロードして、必要な友人がそれを参照できるようにする必要があります。
関数 reSizeImg($imgSrc, $resize_width, $resize_height, $isCut=false) {
//画像の種類
$type = substr ( strrchr ( $imgSrc, "." ), 1 );
//画像を初期化します
if ($type == "jpg") {
$im = imagecreatefromjpeg ( $imgSrc );
}
if ($type == "gif") {
$im = imagecreatefromgif ( $imgSrc );
}
if ($type == "png") {
$im = imagecreatefrompng ( $imgSrc );
}
//対象の画像アドレス
$full_length = strlen ( $imgSrc );
$type_length = strlen ( $type );
$name_length = $full_length - $type_length;
$name = substr ( $imgSrc, 0, $name_length - 1 );
$dstig = $name .$type;$width = imagex ( $im );
$height = 画像っぽい ($im);//画像を生成する
//変更された画像の割合
$resize_ratio = ($resize_width) / ($resize_height);
//実際の画像の比率
$ratio = ($width) / ($height);
if (($isCut) == 1) //画像をカット
{
if ($ratio >= $resize_ratio) //高優先度
{
$newimg = imagecreatetruecolor ( $resize_width, $resize_height );
Imagecopyresampled ( $newimg, $im, 0, 0, 0, 0, $resize_width, $resize_height, (($height) * $resize_ratio), $height );
ImageJpeg ( $newimg, $dstimg );
}
if ($ratio < $resize_ratio) //幅が最初
{
$newimg = imagecreatetruecolor ( $resize_width, $resize_height );
Imagecopyresampled ( $newimg, $im, 0, 0, 0, 0, $resize_width, $resize_height, $width, (($width) / $resize_ratio) );
ImageJpeg ( $newimg, $dstimg );
}
} else //トリミングなし
{
if ($ratio >= $resize_ratio) {
$newimg = imagecreatetruecolor ( $resize_width, ($resize_width) / $ratio );
Imagecopyresampled ( $newimg, $im, 0, 0, 0, 0, $resize_width, ($resize_width) / $ratio, $width, $height );
ImageJpeg ( $newimg, $dstimg );
}
if ($ratio $newimg = imagecreatetruecolor ( ($resize_height) * $ratio, $resize_height );
Imagecopyresampled ( $newimg, $im, 0, 0, 0, 0, ($resize_height) * $ratio, $resize_height, $width, $height );
ImageJpeg ( $newimg, $dstimg );
}
}
ImageDestroy ( $im );
}
呼び出し方法は単純で、直接 reSizeImg を実行するだけで、参照も非常に簡単です。