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,20 @@
# ppmtoilbm
> 将PPM图像转换为ILBM文件。
> 更多信息:<https://netpbm.sourceforge.net/doc/ppmtoilbm.html>。
- 将PPM图像转换为ILBM文件
`ppmtoilbm {{path/to/file.ppm}} > {{path/to/file.ilbm}}`
- 向ILBM文件写入最多n个平面并在超过此数量时生成HAM/24位/直接颜色文件:
`ppmtoilbm -maxplanes {{n}} -{{hamif|24if|dcif}} {{path/to/file.ppm}} > {{path/to/file.ilbm}}`
- 生成具有确切n个平面的ILBM文件
`ppmtoilbm -fixplanes {{n}} {{path/to/file.ppm}} > {{path/to/file.ilbm}}`
- 选择要使用的压缩方法:
`ppmtoilbm -{{compress|nocompress|savemem}} {{path/to/file.ppm}} > {{path/to/file.ilbm}}`