원격이미지 조건에 따른 썸네일 생성
먼저 함수들입니다.
<?php
//변수가 정의 되었으면 해당 값을 반환하고 정의 되어있지 않으면 지정된 기본값을 반환합니다.
function Yvar_check(&$var, $return=''){
return (isset($var)) ? $var : $return;
}
//변수가 정의되지 않았거나 값이 NULL값 이거나, 값이 0, false 일경우 지정된 기본값을 반환합니다.
function Yvar_empty_check(&$var, $return=''){
return (!empty($var)) ? $var : $return;
}
//http, GET 방식의 소켓연결
function Ysockopen($url, $referer='', $accept='*/*', $contenttype='application/x-www-form-urlencoded', $cachecontrol='private', $pragma='no-cache', $connection='close'){
if (!empty($url) && preg_match("`^http://.+`i", $url)) {
$array = parse_url($url);
$url_scheme = Yvar_check($array['scheme']);
$url_server = Yvar_check($array['host']);
$url_path = Yvar_check($array['path']);
$url_query= Yvar_check($array['query']);
$url_port = Yvar_empty_check($array['port'], 80);
$fp = fsockopen($url_server, $url_port);
if (empty($fp)) {
return false;
}
fputs($fp, "GET " . $url_path . "?" . $url_query . " HTTP/1.0\n");
if (!empty($accept)) fputs($fp, "Accept: " . $accept . "\n");
if (!empty($contenttype)) fputs($fp, "Content-Type: " . $contenttype . "\n");
fputs($fp, "Host: $url_server:$url_port\n");
if (!empty($referer)) fputs($fp, "Referer: " . $referer . "\n");
if (!empty($cachecontrol)) fputs($fp, "Cache-control: " . $cachecontrol . "\n");
if (!empty($pragma)) fputs($fp, "Pragma: " . $pragma . "\n");
if (!empty($connection)) fputs($fp, "Connection: " . $connection . "\n\n");
return $fp;
}
else {
return false;
}
}
function Ysockclose(&$fp){
if (!empty($fp)) fclose($fp);
return true;
}
//소켓으로 외부파일 통째로 텍스트로 읽어옴
function Yreadfile($url, $referer='', $accept='*/*', $contenttype='application/x-www-form-urlencoded', $cachecontrol='private', $pragma='no-cache', $connection='close') {
$fp = Ysockopen($url, $referer, $accept, $contenttype, $cachecontrol, $pragma, $connection);
if (!empty($fp)) {
$text = '';
$check_header = false;
while (!feof($fp)){
$temp = fgets($fp, 1024);
if ($check_header == false){
//실제 파일이 아닌 헤더 정보인지 체크 하여 추가하지 않는다.
if (preg_match("'^(\r)?\n$'", $temp)) {
$check_header = true;
continue;
}
}
else{
//헤더 정보가 아닌 경우에만 추가한다.
$text .= $temp;
}
}
Ysockclose($fp);
return $text;
}
else {
return '';
}
}
//원본이미지의 경로, 크기, 높이, 타입을 알 경우에 사용가능
function make_smallimg ($src, $src_w, $src_h, $src_t, $copy, $copy_w, $copy_h, $copy_rule='width', $copy_pos='1'){
if ($src_t == 1)
$src = @imagecreatefromgif($src);
else if ($src_t == 2)
$src = @imagecreatefromjpeg($src);
else if ($src_t == 3)
$src = @imagecreatefrompng($src);
else
return false;
if (empty($src)) return false;
if (empty($copy) || $copy_w < 10 || $copy_h < 10) return false;
$src_x = 0;
$src_y = 0;
$copy_x = 0;
$copy_y = 0;
if ($copy_pos != 5) {//강제 크기 설정
$copy_x = $copy_y = $src_x = $src_y = 0;
$new_w = $copy_w;
$new_h = $copy_h;
}
else{
if ($copy_rule == 'width' || empty($copy_rule)) {//너비에 맞춤
$rate = $src_h / $src_w;
$new_w = $copy_w;
$new_h = (int) ($rate * $copy_w);
if ($new_h < $copy_h){//만들어질 썸네일 높이가 비율대로 줄여진 높이보다 클경우 가운데 위치시킴
if ($copy_pos != 4) $copy_y = (int) (($copy_h - $new_h) / 2);
else $copy_h = $new_h;//비율대로
}
else {
if ($copy_pos == '1' || empty($copy_pos)) {//원본에서 상단을 기준으로 가져옴
//기본값 그대로
}
else if ($copy_pos == '2') {//원본에서 중앙을 기준으로 가져옴
$temp_h = (int) ($copy_h / $copy_w * $src_w);
$src_y = (int) (($src_h - $temp_h) / 2);
}
else if ($copy_pos == '3') {//원본에서 하단을 기준으로 가져옴
$temp_h = (int) ($copy_h / $copy_w * $src_w);
$src_y = $src_h - $temp_h;
}
else if ($copy_pos == '4') {//비율대로
$copy_h = $new_h;
}
}
}
else {//높이에 맞춤
$rate = $src_w / $src_h;
$new_h = $copy_h;
$new_w = (int) ($rate * $copy_h);
if ($new_w < $copy_w){//만들어질 썸네일 너비가 비율대로 줄여진 너비보다 클경우 가운데 위치시킴
if ($copy_pos != 4) $copy_x = (int) (($copy_w - $new_w) / 2);
else $copy_w = $new_w;//비율대로
}
else {
if ($copy_pos == '1' || empty($copy_pos)) {//원본에서 왼쪽을 기준으로 가져옴
//기본값 그대로
}
else if ($copy_pos == '2') {//원본에서 중앙을 기준으로 가져옴
$temp_w = (int) ($copy_w / $copy_h * $src_h);
$src_x = (int) (($src_w - $temp_w) / 2);
}
else if ($copy_pos == '3') {//원본에서 오른쪽을 기준으로 가져옴
$temp_w = (int) ($copy_w / $copy_h * $src_h);
$src_x = $src_w - $temp_w;
}
else if ($copy_pos == '4') {//비율대로
$copy_w = $new_w;
}
}
}
}
$dst = @imagecreatetruecolor($copy_w, $copy_h);
if (empty($dst)) return false;
$background_color = @imagecolorallocate($dst, 255, 255, 255);
if (empty($background_color)) return false;
imagefilledrectangle($dst, 0, 0, $copy_w, $copy_h, $background_color);
imagecopyresampled($dst, $src, $copy_x, $copy_y, $src_x, $src_y, $new_w, $new_h, $src_w, $src_h);
imagepng($dst, $copy);
chmod($copy, 0606);
return true;
}
function make_small_remoteimage($image_url, $referer, $save_path, $copy, $copy_w, $copy_h, $copy_rule='width', $copy_pos='1'){
$image_url = trim($image_url);
if (empty($image_url) || !preg_match("`^http`i", $image_url)) return false;//원격이미지 주소 없음
//원격이미지 주소에서 이미지 이름 뽑아냄
preg_match("`/([^/]+)$`i", $image_url, $m);
$image_name = $m[1];
$save_path = trim($save_path);
if (empty($save_path) || !is_dir($save_path)) return false;//임시저장 디렉토리 없음
$referer = trim($referer);
if (empty($referer) || !preg_match("`^http`i", $referer)) {
preg_match("`(https?://[^/]+)/`i", $image_url, $m);
$referer = $m[1];
}
//원격이미지 가져와서 임시저장 디렉토리에 저장
$text = Yreadfile($image_url, $referer);
if (empty($text)) return false;//이미지 읽어오기 실패
$temp_file = preg_replace("`/+$`", '', $save_path) . '/' . uniqid('') . '_' . $image_name;
$fp = @fopen ($temp_file, "w");
@fwrite($fp, $text);
@fclose($fp);
@chmod ($temp_file, 0777);
if (!is_file($temp_file)) return false;//파일 생성 실패
$temp = getimagesize($temp_file);
$src_w = $temp[0];
$src_h = $temp[1];
$src_t = $temp[2];
//썸네일 규칙에 따라 썸네일 생성
$return = make_smallimg ($temp_file, $src_w, $src_h, $src_t, $copy, $copy_w, $copy_h, $copy_rule='width', $copy_pos='1');
@unlink($temp_file);
return $return;
}
사용법은
make_small_remoteimage($image_url, $referer, $save_path, $copy, $copy_w, $copy_h, $copy_rule='width', $copy_pos='1');
순서대로
이미지url
리퍼러
임시저장경로(./temp)
썸네일 저장경로(./temp/abc.png)
썸네일 너비
썸네일 높이
썸네일 생성기준 width 나 height
썸네일 생성 방법 1에서 5까지, 5는 지정된 너비, 높이로 강제 생성
댓글 4개
감사합니다.
일단 적용해보겠습니다.
여의봉보다 더 좋은 천하의 명검 손에 쥐어준들
내공이 감당치 못하니 오호 애제라 오호 애제라
질문 1
위화일을 ~lib.php 로 만들어서,
스킨 안에 집어넣고,
리스트에서 includ_once 한 후,
필요한 곳에
----- make_small_remoteimage($image_url, $referer, $save_path, $copy, $copy_w, $copy_h, $copy_rule='width', $copy_pos='2'); ----
하라는 말씀인가요?
죄송하지만 위의 소스를 적용한 2차소스를 참고할 수 없을까요?
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 1830 |
갈색야생마
|
17년 전 | 2845 | |
| 1829 |
갈색야생마
|
17년 전 | 1593 | |
| 1828 |
갈색야생마
|
17년 전 | 1352 | |
| 1827 |
갈색야생마
|
17년 전 | 2018 | |
| 1826 |
갈색야생마
|
17년 전 | 1465 | |
| 1825 |
갈색야생마
|
17년 전 | 1408 | |
| 1824 |
갈색야생마
|
17년 전 | 1354 | |
| 1823 |
갈색야생마
|
17년 전 | 1563 | |
| 1822 |
갈색야생마
|
17년 전 | 2051 | |
| 1821 |
갈색야생마
|
17년 전 | 1436 | |
| 1820 |
갈색야생마
|
17년 전 | 1408 | |
| 1819 |
갈색야생마
|
17년 전 | 1212 | |
| 1818 |
갈색야생마
|
17년 전 | 1441 | |
| 1817 |
갈색야생마
|
17년 전 | 1170 | |
| 1816 |
갈색야생마
|
17년 전 | 1301 | |
| 1815 |
갈색야생마
|
17년 전 | 1559 | |
| 1814 |
갈색야생마
|
17년 전 | 1394 | |
| 1813 |
갈색야생마
|
17년 전 | 1294 | |
| 1812 |
갈색야생마
|
17년 전 | 1262 | |
| 1811 |
갈색야생마
|
17년 전 | 1378 | |
| 1810 |
갈색야생마
|
17년 전 | 1154 | |
| 1809 |
갈색야생마
|
17년 전 | 1208 | |
| 1808 |
갈색야생마
|
17년 전 | 1241 | |
| 1807 |
갈색야생마
|
17년 전 | 1313 | |
| 1806 |
갈색야생마
|
17년 전 | 1339 | |
| 1805 |
갈색야생마
|
17년 전 | 1343 | |
| 1804 |
갈색야생마
|
17년 전 | 1307 | |
| 1803 |
갈색야생마
|
17년 전 | 1626 | |
| 1802 | 17년 전 | 2961 | ||
| 1801 | 17년 전 | 3358 | ||
| 1800 | 17년 전 | 1454 | ||
| 1799 | 17년 전 | 1549 | ||
| 1798 | 17년 전 | 1364 | ||
| 1797 | 17년 전 | 2119 | ||
| 1796 | 17년 전 | 3037 | ||
| 1795 | 17년 전 | 1379 | ||
| 1794 | 17년 전 | 1373 | ||
| 1793 |
갈색야생마
|
17년 전 | 1373 | |
| 1792 |
갈색야생마
|
17년 전 | 1221 | |
| 1791 |
갈색야생마
|
17년 전 | 1417 | |
| 1790 |
갈색야생마
|
17년 전 | 1474 | |
| 1789 |
갈색야생마
|
17년 전 | 1282 | |
| 1788 |
갈색야생마
|
17년 전 | 2566 | |
| 1787 |
갈색야생마
|
17년 전 | 1313 | |
| 1786 |
갈색야생마
|
17년 전 | 1589 | |
| 1785 |
갈색야생마
|
17년 전 | 1464 | |
| 1784 |
갈색야생마
|
17년 전 | 1772 | |
| 1783 |
갈색야생마
|
17년 전 | 1795 | |
| 1782 | 17년 전 | 1806 | ||
| 1781 | 17년 전 | 1852 | ||
| 1780 | 17년 전 | 1512 | ||
| 1779 | 17년 전 | 1605 | ||
| 1778 |
갈색야생마
|
17년 전 | 1513 | |
| 1777 |
갈색야생마
|
17년 전 | 1861 | |
| 1776 |
갈색야생마
|
17년 전 | 1767 | |
| 1775 |
갈색야생마
|
17년 전 | 1564 | |
| 1774 |
갈색야생마
|
17년 전 | 1741 | |
| 1773 |
갈색야생마
|
17년 전 | 1408 | |
| 1772 |
갈색야생마
|
17년 전 | 1639 | |
| 1771 |
갈색야생마
|
17년 전 | 1960 | |
| 1770 |
갈색야생마
|
17년 전 | 2790 | |
| 1769 | 17년 전 | 1997 | ||
| 1768 | 17년 전 | 1410 | ||
| 1767 | 17년 전 | 1950 | ||
| 1766 | 17년 전 | 2404 | ||
| 1765 | 17년 전 | 1561 | ||
| 1764 | 17년 전 | 2326 | ||
| 1763 |
sini117
|
17년 전 | 1761 | |
| 1762 |
sini117
|
17년 전 | 1467 | |
| 1761 |
nooree
|
17년 전 | 1323 | |
| 1760 | 17년 전 | 1995 | ||
| 1759 | 17년 전 | 2884 | ||
| 1758 | 17년 전 | 2503 | ||
| 1757 | 17년 전 | 1529 | ||
| 1756 | 17년 전 | 2874 | ||
| 1755 | 17년 전 | 2410 | ||
| 1754 | 17년 전 | 2754 | ||
| 1753 | 17년 전 | 2766 | ||
| 1752 | 17년 전 | 2556 | ||
| 1751 | 17년 전 | 2368 | ||
| 1750 | 17년 전 | 1727 | ||
| 1749 | 17년 전 | 2462 | ||
| 1748 | 17년 전 | 3960 | ||
| 1747 |
|
17년 전 | 1837 | |
| 1746 | 17년 전 | 3923 | ||
| 1745 | 17년 전 | 1851 | ||
| 1744 | 17년 전 | 1739 | ||
| 1743 | 17년 전 | 2070 | ||
| 1742 | 17년 전 | 2486 | ||
| 1741 | 17년 전 | 1440 | ||
| 1740 | 17년 전 | 1778 | ||
| 1739 | 17년 전 | 2335 | ||
| 1738 | 17년 전 | 1811 | ||
| 1737 | 17년 전 | 1768 | ||
| 1736 | 17년 전 | 1545 | ||
| 1735 | 17년 전 | 1389 | ||
| 1734 | 17년 전 | 1345 | ||
| 1733 | 17년 전 | 1163 | ||
| 1732 | 17년 전 | 1151 | ||
| 1731 | 17년 전 | 1178 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기