ホームページ >バックエンド開発 >PHPチュートリアル >超簡単なPHPラージ画像生成サムネイル実装コード_PHPチュートリアル

超簡単なPHPラージ画像生成サムネイル実装コード_PHPチュートリアル

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

超简单php教程大图生成缩略图实现代码

/**
* サムネイルを生成します
*
* @param string $imagepath 画像パス
* @param string $thumb サムネイル名を生成します
* @param integer $width はサムネイルの最大幅を生成します
* @param integer $height 生成されるサムネイルの最大の高さ
*

*/
関数 Resizeimage($imagepath, $thumb, $width = 200, $height = 200)
{
    list($imagewidth, $imageheight) = getimagesize($imagepath);
    $imagepath = imagecreatefromjpeg($imagepath);
    if ($width && ($imagewidth < $imageheight))
    {
        $width = ($height / $imageheight) * $imagewidth;
    }
    それ以外
    {
        $height = ($width / $imagewidth) * $imageheight;
    }
    $image = imagecreatetruecolor($width, $height);
    imagecopyresampled($image, $imagepath, 0, 0, 0, 0, $width, $height, $imagewidth, $imageheight);
    imagepng($image, $thumb);
    imagedestroy($image);
}
sizeimage('test.jpg', 'test_thumb.jpg');
?>

www.bkjia.comtru​​ehttp://www.bkjia.com/PHPjc/632983.html技術記事超简单php教程大图生成缩略图实现代码 ?php /** * 缩略图生成 * * @param string $imagepath 図片路径 * @param string $thumb 生成缩略图名 * @param inte...
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。