이 기사의 예에서는 PHP에서 썸네일을 생성할 수 있는 파일 업로드 클래스와 사용법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 구현 방법은 다음과 같습니다.
클래스 파일 호출 방법은 다음과 같습니다.
if ($_GET['action'] == '저장') {
$up = 새로운 업로드(); $up = 새로운 업로드()
$up->set_dir(dirname(__FILE__).'/upload/','{y}/{m}');
$up->set_thumb(100,80); $up->set_thumb(100,80);
$up->set_watermark(dirname(__FILE__).'/jblog/images/watermark.png',6,90);
$fs = $up->execute(); $fs = $up->execute();
var_dump($fs); var_dump($fs);
}
?>
테스트