The example in this article describes how to generate high-definition thumbnails in php. Share it with everyone for your reference, the details are as follows:
When using PHP functions to generate thumbnails, thumbnails will be distorted in many cases. At this time, some corresponding solutions are needed.
1. Use imagecreatetruecolor and imageCopyreSampled functions to replace imagecreate and imagecopyresized
respectively2. Add 100 to the third parameter of imagejpeg (for example: imagejpeg($ni,$toFile,100))
The following are the specific functions
function CreateSmallImage( $OldImagePath, $NewImagePath, $NewWidth=154, $NewHeight=134) { // 取出原图,获得图形信息getimagesize参数说明:0(宽),1(高),2(1gif/2jpg/3png),3(width="638" height="340") $OldImageInfo = getimagesize($OldImagePath); if ( $OldImageInfo[2] == 1 ) $OldImg = @imagecreatefromgif($OldImagePath); elseif ( $OldImageInfo[2] == 2 ) $OldImg = @imagecreatefromjpeg($OldImagePath); else $OldImg = @imagecreatefrompng($OldImagePath); // 创建图形,imagecreate参数说明:宽,高 $NewImg = imagecreatetruecolor( $NewWidth, $NewHeight ); //创建色彩,参数:图形,red(0-255),green(0-255),blue(0-255) $black = ImageColorAllocate( $NewImg, 0, 0, 0 ); //黑色 $white = ImageColorAllocate( $NewImg, 255, 255, 255 ); //白色 $red = ImageColorAllocate( $NewImg, 255, 0, 0 ); //红色 $blue = ImageColorAllocate( $NewImg, 0, 0, 255 ); //蓝色 $other = ImageColorAllocate( $NewImg, 0, 255, 0 ); //新图形高宽处理 $WriteNewWidth = $NewHeight*($OldImageInfo[0] / $OldImageInfo[1]); //要写入的高度 $WriteNewHeight = $NewWidth*($OldImageInfo[1] / $OldImageInfo[0]); //要写入的宽度 //这样处理图片比例会失调,但可以填满背景 if ($OldImageInfo[0] / $NewWidth > $org_info[1] / $NewHeight) { $WriteNewWidth = $NewWidth; $WriteNewHeight = $NewWidth / ($OldImageInfo[0] / $OldImageInfo[1]); } else { $WriteNewWidth = $NewHeight * ($OldImageInfo[0] / $OldImageInfo[1]); $WriteNewHeight = $NewHeight; } //以$NewHeight为基础,如果新宽小于或等于$NewWidth,则成立 if ( $WriteNewWidth <= $NewWidth ) { $WriteNewWidth = $WriteNewWidth; //用判断后的大小 $WriteNewHeight = $NewHeight; //用规定的大小 $WriteX = floor( ($NewWidth-$WriteNewWidth) / 2 ); //在新图片上写入的X位置计算 $WriteY = 0; } else { $WriteNewWidth = $NewWidth; // 用规定的大小 $WriteNewHeight = $WriteNewHeight; //用判断后的大小 $WriteX = 0; $WriteY = floor( ($NewHeight-$WriteNewHeight) / 2 ); //在新图片上写入的X位置计算 } //旧图形缩小后,写入到新图形上(复制),imagecopyresized参数说明:新旧, 新xy旧xy, 新宽高旧宽高 @imageCopyreSampled( $NewImg, $OldImg, $WriteX, $WriteY, 0, 0, $WriteNewWidth, $WriteNewHeight, $OldImageInfo[0], $OldImageInfo[1] ); //保存文件 // @imagegif( $NewImg, $NewImagePath ); @imagejpeg($NewImg, $NewImagePath, 100); //结束图形 @imagedestroy($NewImg); } CreateSmallImage("./images/jiexie.jpg","./images/jiexie.small.jpg",200,300); CreateSmallImage("./images/jiexie.jpg","./images/jiexie.middle.jpg",400,500);
I hope this article will be helpful to everyone in php programming.