[ Refactor/#484 ] 이미지 최적화 image to webp #495
Open
+104
−37
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
✨ 해당 이슈 번호 ✨
#484
todo
📌 내가 알게 된 부분
Blob이란 파일 형식을 따를 필요 없는 이진 형식의 데이터 덩어리 즉 파일류의 불변하는 미가공 데이터입니다.
큰 용량을 다룰 수 있고 텍스트와 이진 데이터 형태로 읽을 수 있습니다.
File Blob의 한 종류입니다 (Blob의 기능들을 상속하고 있습니다.)
Blob에는 size와 type만 존재하는데 File은 사용자 시스템 파일을 지원하기 위한 몇가지 메타데이터를 제공합니다. (파일명, 최근 변경일자 등)
고화질 이미지의 경우 최대 80% 용량을 절감하는 것을 확인하였는데 이는 아래와 같은 이유 때문입니다.
📌 질문할 부분
📌스크린샷(선택)
LCP 개선 전
LCP 개선 후
같은 파일에 대한 s3업로드 용량 차이
고해상도 jpg 업로드 용량 차이
고해상도 png 업로드 용량 차이