操作檔
<?php /*打开图片*/ $src = "https://img.php.cn/upload/course/000/000/004/581454f755fb1195.jpg"; $info = getimagesize($src); $type = image_type_to_extension($info[2],false); $fun = "imagecreatefrom{$type}"; $image = $fun($src); /*操作图片*/ //在内存中建立一个宽300高200的真色彩图片 $image_thumb = imagecreatetruecolor(300,200); //将原图复制到新建的真色彩图片上,并且按照一定比例压缩(参数1:真色彩图片,参数2:原图,参数3,4,5,6:原图和真色彩图的起始点,参数7,8:原图和真色彩图的结束点,参数9:原图宽,参数10:原图高) imagecopyresampled($image_thumb,$image,0,0,0,0,300,200,$info[0],$info[1]); //销毁原始图片 imagedestroy($image); ?>
程式碼解釋:
首先在記憶體中建立一個規定大小的彩色畫布。
imagecreatetruecolor() 傳回一個圖像標識符,代表了一幅大小為 x_size 和 y_size 的黑色影像。
在使用函數imagecopyresampled()
bool imagecopyresampled ( resource $dst_image , resource $src_image , int $dst_x , int $dst_y , int $src_x , int $src_y , int $dst_w , int $dst_h , int $src_w , int $src_h )
imagecopyresampled() 將一幅影像中的一塊正方形區域拷貝到另一個影像中,平滑地插入像素值,因此,尤其是,減小了影像的大小而仍然保持了極大的清晰度。
dst_image
目標圖象連結資源。
src_image
來源圖象連接資源。
dst_x
目標 X 座標點。
dst_y
目標 Y 座標點。
src_x
來源的 X 座標點。
src_y
來源的 Y 座標點。
dst_w
目標寬度。
dst_h
目標高度。
src_w
來源圖象的寬度。
src_h
來源圖象的高度。
然後將複製在記憶體中給的圖片銷毀。
下一節