pgm*: add Korean translation (#14631)

This commit is contained in:
코드싸이
2024-11-05 16:04:29 +09:00
committed by GitHub
parent 229809dca1
commit f3d3778eab
21 changed files with 241 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
# pgmramp
> 그레이스케일 맵 생성.
> 더 많은 정보: <https://netpbm.sourceforge.net/doc/pgmramp.html>.
- 좌에서 우로 그레이스케일 맵 생성:
`pgmtexture -lr > {{경로/대상/출력.pgm}}`
- 위에서 아래로 그레이스케일 맵 생성:
`pgmtexture -tb > {{경로/대상/출력.pgm}}`
- 직사각형 그레이스케일 맵 생성:
`pgmtexture -rectangle > {{경로/대상/출력.pgm}}`
- 타원형 그레이스케일 맵 생성:
`pgmtexture -ellipse {{경로/대상/이미지.pgm}} > {{경로/대상/출력.pgm}}`
- 왼쪽 상단에서 오른쪽 하단으로 그레이스케일 맵 생성:
`pgmtexture -diagonal {{경로/대상/이미지.pgm}} > {{경로/대상/출력.pgm}}`