array getimages? URL 新建一個圖片
bool imagecopyresized ( resource $dst_image , resource $src_image , int $dst_x , int $dst_y , int $src_x , int $src_y , int $st_w , int $拷貝部分影像並調整大小
bool imagejpeg ( resource $image [, string $filename [, int $quality ]] ) 以JPEG 格式將圖片輸出到瀏覽器或檔案
複製程式碼 程式碼如下:
/*
Created by
http://www.cnphp.info */
// 檔案及縮放尺寸
//$imgfile = 'smp.jpg';
//$percent = 0.2 ;
header('Content-type: image/jpeg');
list($width, $height) = getimagesize($imgfile);
$newwidth = $width * $percent;
$newheight = $height * $percent;
$thumb = ImageCreateTrueColor($newwidth,$newheight);
$source = imagecreatefromjpeg($imgfile);
imagecopyresized($thumbresized($thumb) $source, source, , 0, 0, $newwidth, $newheight, $width, $height);
imagejpeg($thumb);
?>
以上就介紹了phison-up10量產工具v1.78.00 php 縮圖實作函數程式碼,包含了phison-up10量產工具v1.78.00方面的內容,希望對PHP教學有興趣的朋友有幫助。