PHP

[PHP] 캔버스 이미지 업로드

youngddo 2020. 6. 23. 17:00
// 웹캠 사용하기 참고글 https://ddochi-dev.tistory.com/entry/HTML-%EC%9B%B9%EC%BA%A0-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0

// script
<script>
document.getElementById("webcamBtn").addEventListener("click",function() {
	context.drawImage(video,0,0,960,720);
	$.ajax({
		type : 'post',
		data: {
			file: canvas.toDataURL()
		},
		success:function(data) {
		}
	});
});
</script>

// PHP
$file = $_POST['file'];
list($type, $file) = explode(';',$file);
list(,$file) = explode(',',$file);
$file = base64_decode($file);
$filename = "파일명.jpg";
$savedir = "파일경로";
file_put_contents("{$savedir}{$filename}",$file);