!, ^, cs*, ctags, cvs, cwebp, cypher-shell, czkawka-cli: update and add Korean translation (#14099)

This commit is contained in:
HoJeong Im
2024-10-12 02:05:31 +09:00
committed by GitHub
parent 5ceae06882
commit 6bfd085719
13 changed files with 248 additions and 0 deletions

24
pages.ko/common/cwebp.md Normal file
View File

@@ -0,0 +1,24 @@
# cwebp
> 이미지 파일을 WebP 파일로 압축.
> 더 많은 정보: <https://developers.google.com/speed/webp/docs/cwebp>.
- 기본 설정 (q = 75)을 사용하여 WebP 파일을 출력([o]utput) 파일로 압축:
`cwebp {{경로/대상/이미지_파일}} -o {{경로/대상/출력파일.webp}}`
- 최고 품질([q]uality)과 최대 파일 크기로 WebP 파일을 압축:
`cwebp {{경로/대상/이미지_파일}} -o {{경로/대상/출력파일.webp}} -q {{100}}`
- 최저 품질([q]uality)과 최소 파일 크기로 WebP 파일을 압축:
`cwebp {{경로/대상/이미지_파일}} -o {{경로/대상/출력파일.webp}} -q {{0}}`
- WebP 파일을 압축하고 이미지에 크기 조정을 적용:
`cwebp {{경로/대상/이미지_파일}} -o {{경로/대상/출력파일.webp}} -resize {{width}} {{height}}`
- WebP 파일을 압축하고 알파 채널 정보를 삭제:
`cwebp {{경로/대상/이미지_파일}} -o {{경로/대상/출력파일.webp}} -noalpha`