Re: [問題] 這個切割圖片的功能怎麼做的
截取的圖用底下的原始碼截的: (只改了數值跟圖片的路徑)
<?php
header("Content-type: image/jpeg");
$filename = '../images/lukung.jpg';
/* 讀取圖檔 */
$im = imagecreatefromjpeg($filename);
/* 圖片要截多少, 長/寬 */
$new_img_width = 550;
$new_img_height = 350;
/* 先建立一個 新的空白圖檔 */
$newim = imagecreate($new_img_width, $new_img_height);
// 輸出圖要從哪邊開始x, y , 原始圖要從哪邊開始 x, y , 要畫多大 x, y(resize) ,
要抓多大 x, y
imagecopyresampled($newim, $im, 20, 20, 20, 20, 480, 300, $new_img_width,
$new_img_height);
/* 放大 成 500 x 500 的圖 */
// imagecopyresampled($newim, $im, 0, 0, 100, 30, 500, 500, $new_img_width,
$new_img_height);
/* 將圖印出來 */
imagejpeg($newim);
/* 資源回收 */
imagedestroy($newim);
imagedestroy($im);
?>
怎麼看起來色彩數不是很夠,而且背景顏色好像還會隨機變色阿?
※ 引述《tinghsuan (nothing)》之銘言:
: ※ 引述《qazsd (nice play!)》之銘言:
: : http://www.myicon.com.tw/
: : 要登入會員後 才能在會員專區修改個人圖示
: : 然後我想請問的是...
: : 從本機端上傳圖片後
: : 怎麼做到裁剪圖片阿
: : 另外想請問如何將預覽圖片固定大小
: : 謝謝
: 截圖功能網上還挺多資料的,找一下就有了
: 以這網站所用的php為例,這位仁兄寫得挺詳細的
: 連sorce code都貢獻出來了哩
: http://plog.longwin.com.tw/programming/2007/11/09/php_snap_image_block_2007
: 如何將預覽圖片固定大小?
: 這問題跟 " 如何設定圖片大小 " 不一樣嗎??
: 如果一樣,就只是在html中設定圖的width跟height而已
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 59.127.20.190
※ 編輯: qazsd 來自: 59.127.20.190 (11/17 15:43)
討論串 (同標題文章)
本文引述了以下文章的的內容:
完整討論串 (本文為第 3 之 5 篇):
Ajax 近期熱門文章
PTT數位生活區 即時熱門文章