magick*: add and update Korean translation (#14192)

This commit is contained in:
코드싸이
2024-10-14 16:50:22 +09:00
committed by GitHub
parent 4df23b529f
commit 6e32c08061
7 changed files with 143 additions and 14 deletions

View File

@@ -0,0 +1,17 @@
# magick identify
> 이미지 파일의 형식과 특성을 설명합니다.
> 같이 보기: `magick`.
> 더 많은 정보: <https://imagemagick.org/script/identify.php>.
- 이미지의 형식과 기본 특성 설명:
`magick identify {{경로/대상/이미지}}`
- 이미지의 형식과 자세한 특성 설명:
`magick identify -verbose {{경로/대상/이미지}}`
- 현재 디렉토리의 모든 JPEG 파일의 크기를 수집하여 CSV 파일에 저장:
`magick identify -format "{{%f,%w,%h\n}}" {{*.jpg}} > {{경로/대상/파일목록.csv}}`