[October,29,2022]

devbit4 [front-end developer]·2022년 10월 29일
0

TIL

목록 보기
143/163

2022-10-29

✍️ 1) PLAN & TODO

  • [✅] : 언니랑 공부
  • [] : canvas 이미지 삽입, 텍스트 삽입 후 캔버스 저장 과제 제출
  • [] : 지난 과제 복습
  • [] : 과제 css 작업

💻 2) CODING

09:00-17:00 / 17:00-19:00 / 21:00~22:00 / 23:00-24:00

✍️ WORK & CODE

 <input type="file" accept="image/*" multiple id="file" />

https://developer.mozilla.org/ko/docs/Web/HTML/Element/Input/file
https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL

function onFileChange(event) {
  const file = event.target.files[0];
  const url = URL.createObjectURL(file);
  const image = new Image();
  image.src = url;
  image.onload = function () {
    ctx.drawImage(image, 0, 0, 600, 600);
    fileInput.value = null;
  };
}

https://jw910911.tistory.com/119

  • canvas save

🤸‍♀️ 3) EXERCISE & LANGUAGES & BOOK

Monday/ Wednesday(Tuesday)/ Thursday 19:45-20:15 (English with Clarisse)
Tuesday / Thursday 21:00 ~ 22:00 (어깨 수영 보류)
Saturday 09:00~10:00
Sunday


🏈 4) REFLECTION


profile
제대로 꾸준하게 / 블로그 이전 => https://dailybit.co.kr

0개의 댓글