add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,24 @@
# pnmtopalm
> 将PNM图像转换为Palm位图。
> 更多信息:<https://netpbm.sourceforge.net/doc/pnmtopalm.html>。
- 将PNM图像转换为Palm位图
`pnmtopalm {{path/to/file.pnm}} > {{path/to/file.palm}}`
- 指定生成位图的颜色深度:
`pnmtopalm -depth {{1|2|4|8|16}} {{path/to/file.pnm}} > {{path/to/file.palm}}`
- 选择生成位图的压缩方法:
`pnmtopalm -{{scanline_compression|rle_compression|packbits_compression}} {{path/to/file.pnm}} > {{path/to/file.palm}}`
- 构建自定义调色板并将其包含在生成的位图中:
`pnmtopalm -colormap {{path/to/file.pnm}} > {{path/to/file.palm}}`
- 指定位图的密度:
`pnmtopalm -density {{72|108|144|216|288}} {{path/to/file.pnm}} > {{path/to/file.palm}}`