linux/e*: add Korean translation (#14684)

* linux/e*: add Korean translation

* Update pages.ko/linux/e2undo.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/linux/e2undo.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/linux/eyed3.md

Co-authored-by: Chooooo <contact@choo.ooo>

---------

Co-authored-by: Chooooo <contact@choo.ooo>
This commit is contained in:
코드싸이
2024-11-08 16:21:16 +09:00
committed by GitHub
parent f5ac8fe874
commit b23c3160f7
42 changed files with 918 additions and 0 deletions

24
pages.ko/linux/exif.md Normal file
View File

@@ -0,0 +1,24 @@
# exif
> JPEG 파일의 EXIF 정보를 표시하고 변경.
> 더 많은 정보: <https://github.com/libexif/exif/>.
- 이미지에서 인식된 모든 EXIF 정보 표시:
`exif {{경로/대상/이미지.jpg}}`
- 이미지에 존재하는지 여부와 함께 알려진 EXIF 태그 목록을 표로 표시:
`exif --list-tags --no-fixup {{이미지.jpg}}`
- 이미지 썸네일을 `thumbnail.jpg` 파일로 추출:
`exif --extract-thumbnail --output={{thumbnail.jpg}} {{이미지.jpg}}`
- 주어진 이미지에서 "Model" 태그의 원시 내용 표시:
`exif --ifd={{0}} --tag={{Model}} --machine-readable {{이미지.jpg}}`
- "Artist" 태그의 값을 John Smith로 변경하고 `new.jpg`로 저장:
`exif --output={{new.jpg}} --ifd={{0}} --tag="{{Artist}}" --set-value="{{John Smith}}" --no-fixup {{이미지.jpg}}`