game: 아이콘 크기를 30kb에서 50kb로 증량

This commit is contained in:
2022-06-03 18:39:57 +09:00
parent 329a461721
commit fc0c183ca3
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -50,9 +50,9 @@ if(!is_uploaded_file($image['tmp_name'])) {
//확장자 검사
$response['reason'] = 'webp, jpg, gif, png 파일이 아닙니다!';
$response['result'] = false;
} elseif($image['size'] > 30720) {
} elseif($image['size'] > 51200) {
//파일크기 검사
$response['reason'] = '30kb 이하로 올려주세요!';
$response['reason'] = '50kb 이하로 올려주세요!';
$response['result'] = false;
} elseif($size[0] < 64 || 128 < $size[0]) {
//이미지크기 검사
+1 -1
View File
@@ -155,7 +155,7 @@ require(__DIR__ . '/../vendor/autoload.php');
<th class="bg1">도움말</th>
<td colspan="5" style="text-align:left;padding:8px;">
<p style="line-height:1.2em;">
아이콘은 64 x 64픽셀 ~ 128 x 128픽셀 사이, 30KB 이하의 webp, jpg, gif, png 파일만 가능합니다.</p>
아이콘은 64 x 64픽셀 ~ 128 x 128픽셀 사이, 50KB 이하의 webp, jpg, gif, png 파일만 가능합니다.</p>
<p style="margin-top:1em;color:magenta;line-height:1.2em;">탈퇴시 1개월간 정보가 보존되며, 1개월간 재가입이 불가능합니다.</span>
</p>
</td>