為了使網站看起來美觀,不少的朋友會選擇圖文搭配建站,那么關于圖片大小的裁剪成為不可或缺的功能,文章總結了php圖片裁剪實現方法,希望對您有所幫助!
核心技術:imagecopyresampled(dst_image, src_image, dst_x, dst_y, src_x, src_y, dst_w, dst_h, src_w, src_h)。
實現代碼:
<?php
<?php
/**
* cutimage
*
*/
$filename = "./images/gg.jpg";
$src_image = imagecreatefromjpeg($filename);
$w = 200;
$h = 200;
$src_x = 250;
$src_y = 250;
$dst_image = imagecreatetruecolor($w, $h);
imagecopyresampled($dst_image, $src_image, 0, 0, $src_x, $src_y, $w, $h, $w, $h);
header("content-type:image/jpeg");
imagejpeg($dst_image);
imagedestroy($dst_image);
新聞熱點
疑難解答