以下はPHPのソースコード(ResizeImage.php)です。
コードをコピーします コードは次のとおりです:
$FILENAME="image.thumb";
// 画像の幅を生成します
$RESIZEWIDTH=400;画像の高さを生成します
$ RESIZEHEIGHT=400;
function ResizeImage($im,$maxwidth,$maxheight,$name){
$width = imagex($im);
$height = imagey($im);
if(($maxwidth && $width > $maxwidth) || ($maxheight && $height > $maxheight)){
if($maxwidth && $width > $maxwidth){
$widthratio = $maxwidth/ $width;
$RESIZEWIDTH=true ;
}
if($maxheight && $height > $maxheight){
$heightratio = $maxheight/$height;
if($RESIZEWIDTH && $ RESIZEHEIGHT){
if($widthratio < $heightratio){
$ratio = $widthratio;
}else{
$ratio = $heightratio;
}elseif($RESIZEWIDTH){
$ratio = $widthratio; }elseif($RESIZEHEIGHT){
$ratio = $heightratio;
$newwidth = $width * $ratio;
if(function_exists("imagecopyresampled")){
$newim = imagecreatetruecolor($newwidth, $newheight );
imagecopyresampled($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
$newim = imagecreate( $newwidth, $newheight);
imagecopyresize($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
}
ImageJpeg ($newim,$name . ". jpg");
ImageDestroy ($ newim);
}else{
ImageJpeg ($im,$name . ".jpg");
}
}
if($_FILES['image']['size'] ){
if($_FILES[ 'image']['type'] == "image/pjpeg"){
$im = imagecreatefromjpeg($_FILES['image']['tmp_name']); $_FILES['image'][ 'type'] == "image/x-png"){
$im = imagecreatefrompng($_FILES['image']['tmp_name']);
}elseif($_FILES[ 'image']['type' ] == "image/gif"){
$im = imagecreatefromgif($_FILES['image']['tmp_name']);
}
if($im){
if( file_exists("$FILENAME.jpg" )){
unlink("$FILENAME.jpg")
}
ResizeImage($im,$RESIZEWIDTH,$RESIZEHEIGHT,$FILENAME); }
?>
以下はテストコード (demo.php) です
コードをコピーします
コードは次のとおりです:
include('ResizeImage.php') ;
if(!empty($_POST)){
echo ($FILENAME.".jpg?cache=".rand(0,999999));
}
<フォーム名="テスト" アクション="?submit=true" enctype="multipart/form-data" method="post" ;p>
http://www.bkjia.com/PHPjc/323070.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/323070.html
技術記事
以下はPHPのソースコード(ResizeImage.php)です。 コードをコピーします。 コードは次のとおりです。 ?php $FILENAME="image.thumb" // 画像の幅を生成 $RESIZEWIDTH=400 // 画像の高さを生成 $RESIZEHEIGHT=...
;