コードをコピーします コードは次のとおりです:
/**********************
*@filename - 画像へのパス
*@tmpname - サムネイルへの一時パス
*@xmax - 最大幅
*@ymax -最大身長
*/
function raise_image($filename, $tmpname, $xmax, $ymax)
{
$ext =explode(" .", $ ファイル名);
$ext = $ext[count($ext)-1];
if($ext == "jpg" || $ext == "jpeg")
$im = imagecreatefromjpeg($ tmpname);
elseif($ext == "png")
$im = imagecreatefrompng($tmpname);
elseif($ext == "gif")
$x = imagex ($im) ;
$y = imagey($im);
if($x if($x >= $y) {
$newx = $xmax;
$newy = $y / $x;
else {
$newy = $y * $newy; im2 = imagecreatetruecolor( $newx, $newy);
imagecopyresize($im2, $im, 0, 0, 0, 0, 床($newx), 床($newy), $x, $y); im2;
}
以下は、このサイトで以前に公開された記事からの抜粋です。さらに多くのヒントが参考になります。
21個の実用的で便利なPHP関数コードのコレクション
上記は、iPhone の壁紙サイズの内容を含む、PHP 画像サイズ調整コードを紹介しました。PHP チュートリアルに興味のある友人に役立つことを願っています。